Test Failed
Pull Request — master (#45)
by Iman
05:13 queued 02:34
created
src/Utils/Normalizers/TemplateNormalizer.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -17,12 +17,12 @@
 block discarded – undo
17 17
         // replace slashes with dots
18 18
         $className = str_replace(['\\', '/'], '.', $className);
19 19
 
20
-        if (! property_exists($widget, 'template')) {
21
-            $widget->template = 'Widgets::'.$className.'View';
20
+        if (!property_exists($widget, 'template')) {
21
+            $widget->template = 'Widgets::' . $className . 'View';
22 22
         }
23 23
 
24
-        if (! view()->exists($widget->template)) {
25
-            throw new \InvalidArgumentException("View file \"{$widget->template}\" not found by: '".get_class($widget)." '");
24
+        if (!view()->exists($widget->template)) {
25
+            throw new \InvalidArgumentException("View file \"{$widget->template}\" not found by: '" . get_class($widget) . " '");
26 26
         }
27 27
     }
28 28
 }
Please login to merge, or discard this patch.
src/helpers.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,20 +1,20 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-if (! function_exists('render_widget')) {
3
+if (!function_exists('render_widget')) {
4 4
     function render_widget($widget, ...$args)
5 5
     {
6 6
         return app(\Imanghafoori\Widgets\Utils\WidgetRenderer::class)->renderWidget($widget, ...$args);
7 7
     }
8 8
 }
9 9
 
10
-if (! function_exists('expire_widgets')) {
10
+if (!function_exists('expire_widgets')) {
11 11
     function expire_widgets($tags)
12 12
     {
13 13
         return app(\Imanghafoori\Widgets\Utils\Cache::class)->expireTaggedWidgets($tags);
14 14
     }
15 15
 }
16 16
 
17
-if (! function_exists('json_widget')) {
17
+if (!function_exists('json_widget')) {
18 18
     function json_widget($widget, ...$args)
19 19
     {
20 20
         return app(\Imanghafoori\Widgets\Utils\WidgetJsonifier::class)->jsonResponse($widget, ...$args);
Please login to merge, or discard this patch.
src/Utils/Normalizers/ContextAsNormalizer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@
 block discarded – undo
60 60
         $contextAs = 'data';
61 61
         if (property_exists($widget, 'contextAs')) {
62 62
             // removes the $ sign.
63
-            $contextAs = str_replace('$', '', (string) $widget->contextAs);
63
+            $contextAs = str_replace('$', '', (string)$widget->contextAs);
64 64
         }
65 65
         $widget->contextAs = $contextAs;
66 66
     }
Please login to merge, or discard this patch.
src/Utils/WidgetRenderer.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
             return app($widget);
53 53
         }
54 54
 
55
-        $widget = app()->getNamespace().'Widgets\\'.$widget;
55
+        $widget = app()->getNamespace() . 'Widgets\\' . $widget;
56 56
 
57 57
         return app($widget);
58 58
     }
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
     private function generateHtml($widget, ...$args)
69 69
     {
70 70
         // Everything inside this function is executed only when the cache is not available.
71
-        $expensivePhpCode = function () use ($widget, $args) {
71
+        $expensivePhpCode = function() use ($widget, $args) {
72 72
             $this->makeDataForView($widget, $args);
73 73
 
74 74
             // render the template with the resulting data.
Please login to merge, or discard this patch.
src/WidgetsServiceProvider.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -17,11 +17,11 @@  discard block
 block discarded – undo
17 17
     {
18 18
         $this->_registerDebugbar();
19 19
         $this->publishes([
20
-            __DIR__.'/config/config.php' => config_path('widgetize.php'),
20
+            __DIR__ . '/config/config.php' => config_path('widgetize.php'),
21 21
         ]);
22 22
 
23 23
         $this->defineDirectives();
24
-        $this->loadViewsFrom($this->app->basePath().'/app/Widgets/', 'Widgets');
24
+        $this->loadViewsFrom($this->app->basePath() . '/app/Widgets/', 'Widgets');
25 25
     }
26 26
 
27 27
     /**
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
     {
39 39
         $omitParenthesis = version_compare($this->app->version(), '5.3', '<');
40 40
 
41
-        Blade::directive('widget', function ($expression) use ($omitParenthesis) {
41
+        Blade::directive('widget', function($expression) use ($omitParenthesis) {
42 42
             $expression = $omitParenthesis ? $expression : "($expression)";
43 43
 
44 44
             return "<?php echo app(\\Imanghafoori\\Widgets\\Utils\\WidgetRenderer::class)->renderWidget{$expression}; ?>";
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
      */
53 53
     public function register()
54 54
     {
55
-        $this->mergeConfigFrom(__DIR__.'/config/config.php', 'widgetize');
55
+        $this->mergeConfigFrom(__DIR__ . '/config/config.php', 'widgetize');
56 56
         $this->commands('command.imanghafoori.widget');
57 57
         app(RouteMacros::class)->registerMacros();
58 58
         app(SingletonServices::class)->registerSingletons($this->app);
@@ -60,11 +60,11 @@  discard block
 block discarded – undo
60 60
 
61 61
     private function _registerDebugbar()
62 62
     {
63
-        if (! $this->app->offsetExists('debugbar')) {
63
+        if (!$this->app->offsetExists('debugbar')) {
64 64
             return;
65 65
         }
66 66
 
67
-        $this->app->singleton('widgetize.debugger', function () {
67
+        $this->app->singleton('widgetize.debugger', function() {
68 68
             return new MessagesCollector('Widgets');
69 69
         });
70 70
 
Please login to merge, or discard this patch.
src/Utils/CacheTag.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
      */
64 64
     private function persistToken(string $tag, string $token): void
65 65
     {
66
-        \Cache::forever('9z10_o6cg_r'.$tag, $token);
66
+        \Cache::forever('9z10_o6cg_r' . $tag, $token);
67 67
     }
68 68
 
69 69
     /**
@@ -72,6 +72,6 @@  discard block
 block discarded – undo
72 72
      */
73 73
     private function getPersistedToken(string $tag): ?string
74 74
     {
75
-        return \Cache::get('9z10_o6cg_r'.$tag, null);
75
+        return \Cache::get('9z10_o6cg_r' . $tag, null);
76 76
     }
77 77
 }
Please login to merge, or discard this patch.
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   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -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.