Completed
Branch php7.0 (83804a)
by Alexander
02:43
created
app/modules/Cms/Model/Language.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -288,7 +288,7 @@
 block discarded – undo
288 288
     }
289 289
 
290 290
     /**
291
-     * @return mixed
291
+     * @return integer
292 292
      */
293 293
     public function getPrimary()
294 294
     {
Please login to merge, or discard this patch.
app/modules/Cms/Model/Translate.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -107,7 +107,7 @@
 block discarded – undo
107 107
     }
108 108
 
109 109
     /**
110
-     * @return mixed
110
+     * @return string
111 111
      */
112 112
     public function getPhrase()
113 113
     {
Please login to merge, or discard this patch.
app/modules/Publication/Model/Type.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -335,7 +335,7 @@
 block discarded – undo
335 335
     }
336 336
 
337 337
     /**
338
-     * @return mixed
338
+     * @return integer
339 339
      */
340 340
     public function getDisplayDate()
341 341
     {
Please login to merge, or discard this patch.
app/modules/Image/Storage.php 1 patch
Spacing   +2 added lines, -3 removed lines patch added patch discarded remove patch
@@ -109,8 +109,7 @@  discard block
 block discarded – undo
109 109
             $this->changeAttributesInAccordanceWithStretch();
110 110
         }
111 111
         $this->attributes['alt'] = (isset($this->attributes['alt'])) ?
112
-            htmlspecialchars($this->attributes['alt'], ENT_QUOTES) :
113
-            '';
112
+            htmlspecialchars($this->attributes['alt'], ENT_QUOTES) : '';
114 113
     }
115 114
 
116 115
     private function changeAttributesInAccordanceWithStretch()
@@ -239,7 +238,7 @@  discard block
 block discarded – undo
239 238
      */
240 239
     public function isExists()
241 240
     {
242
-        return (file_exists($this->getAbsPath(true))) ? true : false ;
241
+        return (file_exists($this->getAbsPath(true))) ? true : false;
243 242
     }
244 243
 
245 244
     /**
Please login to merge, or discard this patch.