Passed
Push — master ( 1e9c69...bcdde1 )
by Iman
02:21
created
src/Utils/WidgetJsonifier.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
      */
35 35
     private function makeWidgetObj(string $widget)
36 36
     {
37
-        $widget = app()->getNamespace().'Widgets\\'.$widget;
37
+        $widget = app()->getNamespace() . 'Widgets\\' . $widget;
38 38
 
39 39
         return app($widget);
40 40
     }
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
     private function generateJson($widget, ...$args)
51 51
     {
52 52
         // Everything inside this function is executed only when the cache is not available.
53
-        $expensivePhpCode = function () use ($widget, $args) {
53
+        $expensivePhpCode = function() use ($widget, $args) {
54 54
             $data = \App::call($widget->controller, ...$args);
55 55
 
56 56
             // render the template with the resulting data.
Please login to merge, or discard this patch.
src/Utils/Policies.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
      */
24 24
     public function widgetShouldUseCache(): bool
25 25
     {
26
-        return config('widgetize.enable_cache') && (! app()->environment('testing'));
26
+        return config('widgetize.enable_cache') && (!app()->environment('testing'));
27 27
     }
28 28
 
29 29
     /**
Please login to merge, or discard this patch.
src/Utils/DebugInfo.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
      * @param string $html
24 24
      * @return string
25 25
      */
26
-    public function addIdentifierToHtml($widget,string $html): string
26
+    public function addIdentifierToHtml($widget, string $html): string
27 27
     {
28 28
         $this->widget = $widget;
29 29
         $this->html = $html;
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
     {
41 41
         $tpl = $this->getTplPath($this->widget->template);
42 42
 
43
-        $this->html = "<span title='WidgetObj : ".get_class($this->widget).".php&#013;Template : {$tpl}{$this->cacheState()}'>{$this->html}</span>";
43
+        $this->html = "<span title='WidgetObj : " . get_class($this->widget) . ".php&#013;Template : {$tpl}{$this->cacheState()}'>{$this->html}</span>";
44 44
     }
45 45
 
46 46
     /**
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
      */
51 51
     private function cacheState(): string
52 52
     {
53
-        if (! $this->policies->widgetShouldUseCache()) {
53
+        if (!$this->policies->widgetShouldUseCache()) {
54 54
             return ' &#013;Cache: is globally turned off (You should put "enable_cache" => true in config\widgetize.php) ';
55 55
         }
56 56
 
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
 
60 60
     private function addHtmlComments(): void
61 61
     {
62
-        $this->html = "<!-- '{".get_class($this->widget)."' Widget Start -->".$this->html."<!-- '".get_class($this->widget)."' Widget End -->";
62
+        $this->html = "<!-- '{" . get_class($this->widget) . "' Widget Start -->" . $this->html . "<!-- '" . get_class($this->widget) . "' Widget End -->";
63 63
     }
64 64
 
65 65
     /**
@@ -69,9 +69,9 @@  discard block
 block discarded – undo
69 69
     private function getTplPath(string $tpl): string
70 70
     {
71 71
         if (str_contains($tpl, 'Widgets::')) {
72
-            $tpl = str_replace('Widgets::', app()->getNamespace().'Widgets\\', $tpl);
72
+            $tpl = str_replace('Widgets::', app()->getNamespace() . 'Widgets\\', $tpl);
73 73
         }
74 74
 
75
-        return str_replace('.', '\\', $tpl).'.blade.php';
75
+        return str_replace('.', '\\', $tpl) . '.blade.php';
76 76
     }
77 77
 }
Please login to merge, or discard this patch.
src/Utils/Normalizer.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
             return;
59 59
         }
60 60
 
61
-        foreach ($this->normalizers as $normalizer){
61
+        foreach ($this->normalizers as $normalizer) {
62 62
             $normalizer->normalize($widget);
63 63
         }
64 64
         $widget->isNormalized = true;
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
      */
72 72
     public function normalizeJsonWidget($widget): void
73 73
     {
74
-        foreach ($this->normalizers as $normalizer){
74
+        foreach ($this->normalizers as $normalizer) {
75 75
             $normalizer->normalize($widget);
76 76
         }
77 77
     }
Please login to merge, or discard this patch.
src/Utils/Normalizers/CacheTagsNormalizer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
      */
13 13
     public function normalize($widget)
14 14
     {
15
-        if (! property_exists($widget, 'cacheTags')) {
15
+        if (!property_exists($widget, 'cacheTags')) {
16 16
             return $widget->cacheTags = [];
17 17
         }
18 18
 
Please login to merge, or discard this patch.
src/Utils/Normalizers/CacheNormalizer.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,8 +11,8 @@
 block discarded – undo
11 11
      */
12 12
     public function normalize($widget)
13 13
     {
14
-        if (! property_exists($widget, 'cacheLifeTime')) {
15
-            $widget->cacheLifeTime = (int) (config('widgetize.default_cache_lifetime', 0));
14
+        if (!property_exists($widget, 'cacheLifeTime')) {
15
+            $widget->cacheLifeTime = (int)(config('widgetize.default_cache_lifetime', 0));
16 16
         }
17 17
 
18 18
         if ($widget->cacheLifeTime === 'forever' || $widget->cacheLifeTime < 0) {
Please login to merge, or discard this patch.
src/Utils/Normalizers/ControllerNormalizer.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
      */
25 25
     private function checkControllerExists(string $ctrlClass)
26 26
     {
27
-        if (! class_exists($ctrlClass)) {
27
+        if (!class_exists($ctrlClass)) {
28 28
             throw new \InvalidArgumentException("Controller class: [{$ctrlClass}] not found.");
29 29
         }
30 30
     }
@@ -34,8 +34,8 @@  discard block
 block discarded – undo
34 34
      */
35 35
     private function checkDataMethodExists(string $ctrlClass)
36 36
     {
37
-        if (! method_exists($ctrlClass, 'data')) {
38
-            throw new \InvalidArgumentException("'data' method not found on ".$ctrlClass);
37
+        if (!method_exists($ctrlClass, 'data')) {
38
+            throw new \InvalidArgumentException("'data' method not found on " . $ctrlClass);
39 39
         }
40 40
     }
41 41
 
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
         // then we decide to call data method on that instead.
54 54
         if (property_exists($widget, 'controller')) {
55 55
             $ctrlClass = $widget->controller;
56
-            $controllerMethod = ($ctrlClass).'@data';
56
+            $controllerMethod = ($ctrlClass) . '@data';
57 57
         }
58 58
 
59 59
         return [$controllerMethod, $ctrlClass];
Please login to merge, or discard this patch.
src/Utils/Cache.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
 
31 31
         $cache = app('cache');
32 32
 
33
-        if (! empty($widgetObj->cacheTags) && $this->cacheDriverSupportsTags()) {
33
+        if (!empty($widgetObj->cacheTags) && $this->cacheDriverSupportsTags()) {
34 34
             $cache = $cache->tags($widgetObj->cacheTags);
35 35
         }
36 36
 
@@ -61,11 +61,11 @@  discard block
 block discarded – undo
61 61
             $_key = json_encode($widget->extraCacheKeyDependency($arg));
62 62
         }
63 63
 
64
-        if (! $this->cacheDriverSupportsTags()) {
64
+        if (!$this->cacheDriverSupportsTags()) {
65 65
             $_key .= json_encode($this->getTagTokens($widget->cacheTags));
66 66
         }
67 67
 
68
-        $_key .= json_encode($arg, JSON_FORCE_OBJECT).app()->getLocale().$form.$widget->template.get_class($widget);
68
+        $_key .= json_encode($arg, JSON_FORCE_OBJECT) . app()->getLocale() . $form . $widget->template . get_class($widget);
69 69
 
70 70
         return md5($_key);
71 71
     }
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
      */
77 77
     private function cacheDriverSupportsTags() : bool
78 78
     {
79
-        return ! in_array(config('cache.default', 'file'), ['file', 'database']);
79
+        return !in_array(config('cache.default', 'file'), ['file', 'database']);
80 80
     }
81 81
 
82 82
     /**
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
      */
86 86
     private function getTagTokens(array $cacheTags)
87 87
     {
88
-        return array_map(function ($tag) {
88
+        return array_map(function($tag) {
89 89
             return $this->_cacheTag->getTagToken($tag);
90 90
         }, $cacheTags);
91 91
     }
Please login to merge, or discard this patch.