Passed
Push — master ( 1cd2c2...fa1786 )
by Mihail
07:12
created
Widgets/Front/Contenttag/Contenttag.php 1 patch
Indentation   +31 added lines, -31 removed lines patch added patch discarded remove patch
@@ -10,18 +10,18 @@  discard block
 block discarded – undo
10 10
 
11 11
 class Contenttag extends AbstractWidget
12 12
 {
13
-	use OopTools;
13
+    use OopTools;
14 14
 
15
-	public $count;
16
-	public $cache;
15
+    public $count;
16
+    public $cache;
17 17
 
18
-	public $tpl = 'widgets/contenttag/default';
18
+    public $tpl = 'widgets/contenttag/default';
19 19
 
20
-	/**
21
-	 * Set default configurations if not defined
22
-	 * {@inheritDoc}
23
-	 * @see \Ffcms\Core\Arch\Widget::init()
24
-	 */
20
+    /**
21
+     * Set default configurations if not defined
22
+     * {@inheritDoc}
23
+     * @see \Ffcms\Core\Arch\Widget::init()
24
+     */
25 25
     public function init()
26 26
     {
27 27
         $cfg = $this->getConfigs();
@@ -43,29 +43,29 @@  discard block
 block discarded – undo
43 43
     public function display()
44 44
     {
45 45
         // get special properties hash
46
-    	$classHash = $this->createStringClassSnapshotHash();
46
+        $classHash = $this->createStringClassSnapshotHash();
47 47
 
48
-    	// get records rows from cache or directly from db
49
-    	$records = null;
50
-    	if ($this->cache === 0) {
51
-    	    $records = $this->makeQuery();
52
-    	} else {
53
-    	    $records === App::$Cache->get('widget.contenttag.' . $classHash);
54
-    	    if ($records === null) {
55
-    	        $records = $this->makeQuery();
56
-    	        App::$Cache->set('widget.contenttag' . $classHash, $records, $this->cache);
57
-    	    }
58
-    	}
48
+        // get records rows from cache or directly from db
49
+        $records = null;
50
+        if ($this->cache === 0) {
51
+            $records = $this->makeQuery();
52
+        } else {
53
+            $records === App::$Cache->get('widget.contenttag.' . $classHash);
54
+            if ($records === null) {
55
+                $records = $this->makeQuery();
56
+                App::$Cache->set('widget.contenttag' . $classHash, $records, $this->cache);
57
+            }
58
+        }
59 59
 
60
-    	// check if result is not empty
60
+        // check if result is not empty
61 61
         if ($records === null || $records->count() < 1) {
62 62
             return __('Content tags is not found');
63 63
         }
64 64
 
65 65
         // render view
66
-    	return App::$View->render($this->tpl, [
67
-    	    'records' => $records
68
-    	]);
66
+        return App::$View->render($this->tpl, [
67
+            'records' => $records
68
+        ]);
69 69
     }
70 70
 
71 71
     /**
@@ -75,11 +75,11 @@  discard block
 block discarded – undo
75 75
     private function makeQuery()
76 76
     {
77 77
         return TagRecord::select([
78
-    	    App::$Database->getConnection()->raw('SQL_CALC_FOUND_ROWS tag'),
79
-    	    App::$Database->getConnection()->raw('COUNT(*) AS count')
80
-    	])->groupBy('tag')
81
-        	->orderBy('count', 'DESC')
82
-        	->take($this->count)
83
-        	->get();
78
+            App::$Database->getConnection()->raw('SQL_CALC_FOUND_ROWS tag'),
79
+            App::$Database->getConnection()->raw('COUNT(*) AS count')
80
+        ])->groupBy('tag')
81
+            ->orderBy('count', 'DESC')
82
+            ->take($this->count)
83
+            ->get();
84 84
     }
85 85
 }
86 86
\ No newline at end of file
Please login to merge, or discard this patch.
Widgets/Front/Newcomment/Newcomment.php 1 patch
Indentation   +22 added lines, -22 removed lines patch added patch discarded remove patch
@@ -14,27 +14,27 @@  discard block
 block discarded – undo
14 14
 {
15 15
     use OopTools;
16 16
 
17
-	public $snippet;
18
-	public $count;
19
-	public $cache;
17
+    public $snippet;
18
+    public $count;
19
+    public $cache;
20 20
 
21
-	/**
22
-	 * Set default configs if not passed
23
-	 * {@inheritDoc}
24
-	 * @see \Ffcms\Core\Arch\Widget::init()
25
-	 */
21
+    /**
22
+     * Set default configs if not passed
23
+     * {@inheritDoc}
24
+     * @see \Ffcms\Core\Arch\Widget::init()
25
+     */
26 26
     public function init()
27 27
     {
28
-    	$cfg = $this->getConfigs();
29
-    	if ($this->snippet === null) {
30
-    	    $this->snippet = $cfg['snippet'];
31
-    	}
32
-    	if ($this->count === null) {
33
-    	    $this->count = $cfg['count'];
34
-    	}
35
-    	if ($this->cache === null) {
36
-    	    $this->cache = $cfg['cache'];
37
-    	}
28
+        $cfg = $this->getConfigs();
29
+        if ($this->snippet === null) {
30
+            $this->snippet = $cfg['snippet'];
31
+        }
32
+        if ($this->count === null) {
33
+            $this->count = $cfg['count'];
34
+        }
35
+        if ($this->cache === null) {
36
+            $this->cache = $cfg['cache'];
37
+        }
38 38
     }
39 39
 
40 40
     /**
@@ -63,10 +63,10 @@  discard block
 block discarded – undo
63 63
         }
64 64
 
65 65
         // render view
66
-    	return App::$View->render('widgets/newcomment/default', [
67
-    	    'records' => $records,
68
-    	    'snippet' => $this->snippet
69
-    	]);
66
+        return App::$View->render('widgets/newcomment/default', [
67
+            'records' => $records,
68
+            'snippet' => $this->snippet
69
+        ]);
70 70
     }
71 71
 
72 72
     /**
Please login to merge, or discard this patch.