]> git.mxchange.org Git - friendica.git/commitdiff
Code standards
authorfabrixxm <fabrix.xm@gmail.com>
Wed, 21 Nov 2018 15:36:29 +0000 (16:36 +0100)
committerHypolite Petovan <hypolite@mrpetovan.com>
Mon, 21 Jan 2019 14:02:57 +0000 (09:02 -0500)
src/Model/Photo.php
src/Model/Storage/IStorage.php
src/Model/Storage/SystemResource.php
src/Module/Photo.php

index 3c22c52bc1d06ee9a25a32a5db38bcad2477f2f6..3e0d5e40acca916f1c216807a49db9483d341aba 100644 (file)
@@ -125,7 +125,7 @@ class Photo extends BaseObject
                $data = "";
                if ($photo["backend-class"] == "") {
                        // legacy data storage in "data" column
-                       $i = self::selectFirst(["data"], ["id"=>$photo["id"]]);
+                       $i = self::selectFirst(["data"], ["id" => $photo["id"]]);
                        if ($i === false) {
                                return null;
                        }
@@ -168,7 +168,7 @@ class Photo extends BaseObject
                $fields = self::getFields();
                $values = array_fill(0, count($fields), "");
                $photo = array_combine($fields, $values);
-               $photo["backend-class"] = "\Friendica\Model\Storage\SystemResource";
+               $photo["backend-class"] = \Friendica\Model\Storage\SystemResource::class;
                $photo["backend-ref"] = $filename;
                $photo["type"] = $mimetype;
                $photo["cacheable"] = false;
index 93298050d5e77fa60f5435863067fac6ba4d558e..deacb8ffc9d5524cdfe81d6439122149eb6a2294 100644 (file)
@@ -19,7 +19,7 @@ interface IStorage
        public static function get($ref);
 
        /**
-        * @brief Put data in backend as $ref. If $ref is not defiend a new reference is created.
+        * @brief Put data in backend as $ref. If $ref is not defined a new reference is created.
         * @param string  $data  Data to save
         * @param string  $ref   Data referece. Optional.
         * @return string Saved data referece
index b54aabf6a4262f2eb5423c6d7bdf62b9a24283f7..354b1e3284f6c3db97afcc8eb7af5fe9a42c5e6f 100644 (file)
@@ -30,7 +30,7 @@ class SystemResource implements IStorage
        }
 
 
-       public static function put($data, $filename="")
+       public static function put($data, $filename = "")
        {
                throw new \BadMethodCallException();
        }
index 13d9253767b5048f2e8016004e98bab02236786c..a175f7c0902fff79a2cdda17b9bfc0de61aea1fb 100644 (file)
@@ -150,7 +150,7 @@ class Photo extends BaseModule
                }
 
                $photo = MPhoto::selectFirst([], ["scale" => $scale, "uid" => $uid, "profile" => 1]);
-               if ($photo===false) {
+               if ($photo === false) {
                        $photo = MPhoto::createPhotoForSystemResource($default);
                }
                return $photo;