Passed
Push — master ( fcf8a0...ba2801 )
by Mihail
04:49
created
Widgets/Front/Newcontent/Newcontent.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -78,7 +78,7 @@
 block discarded – undo
78 78
     
79 79
     /**
80 80
      * Make query to database
81
-     * @return object
81
+     * @return string
82 82
      */
83 83
     private function makeQuery()
84 84
     {
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -32,11 +32,11 @@
 block discarded – undo
32 32
         }
33 33
         // check cache is defined
34 34
         if ($this->cache === null || !Obj::isLikeInt($this->cache)) {
35
-            $this->cache = (int)$cfg['cache'];
35
+            $this->cache = (int) $cfg['cache'];
36 36
         }
37 37
         // check item count is defined
38 38
         if ($this->count === null || !Obj::isLikeInt($this->count)) {
39
-            $this->count = (int)$cfg['count'];
39
+            $this->count = (int) $cfg['count'];
40 40
         }
41 41
     }
42 42
     
Please login to merge, or discard this patch.
Apps/Model/Admin/Newcontent/FormSettings.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -30,8 +30,8 @@  discard block
 block discarded – undo
30 30
     public function before()
31 31
     {
32 32
         $this->categories = Serialize::decode($this->_configs['categories']);
33
-        $this->count = (int)$this->_configs['count'];
34
-        $this->cache = (int)$this->_configs['cache'];
33
+        $this->count = (int) $this->_configs['count'];
34
+        $this->cache = (int) $this->_configs['cache'];
35 35
     }
36 36
 
37 37
     /**
@@ -64,8 +64,8 @@  discard block
 block discarded – undo
64 64
     public function getResult()
65 65
     {
66 66
         return [
67
-            'count' => (int)$this->count,
68
-            'cache' => (int)$this->cache,
67
+            'count' => (int) $this->count,
68
+            'cache' => (int) $this->cache,
69 69
             'categories' => Serialize::encode($this->categories)
70 70
         ];
71 71
     }
Please login to merge, or discard this patch.