@@ -1,6 +1,6 @@ |
||
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); |
@@ -11,8 +11,8 @@ discard block |
||
11 | 11 | */ |
12 | 12 | public function normalizeCacheLifeTime($widget) |
13 | 13 | { |
14 | - if (! property_exists($widget, 'cacheLifeTime')) { |
|
15 | - $widget->cacheLifeTime = (int) (env('WIDGET_DEFAULT_CACHE_LIFETIME', 0)); |
|
14 | + if (!property_exists($widget, 'cacheLifeTime')) { |
|
15 | + $widget->cacheLifeTime = (int)(env('WIDGET_DEFAULT_CACHE_LIFETIME', 0)); |
|
16 | 16 | } |
17 | 17 | |
18 | 18 | if ($widget->cacheLifeTime === 'forever') { |
@@ -27,7 +27,7 @@ discard block |
||
27 | 27 | */ |
28 | 28 | public function normalizeCacheTags($widget) |
29 | 29 | { |
30 | - if (! $this->cacheCanUseTags() || ! property_exists($widget, 'cacheTags')) { |
|
30 | + if (!$this->cacheCanUseTags() || !property_exists($widget, 'cacheTags')) { |
|
31 | 31 | return $widget->cacheTags = null; |
32 | 32 | } |
33 | 33 | |
@@ -44,6 +44,6 @@ discard block |
||
44 | 44 | */ |
45 | 45 | private function cacheCanUseTags() |
46 | 46 | { |
47 | - return ! in_array(env('CACHE_DRIVER', 'file'), ['file', 'database']); |
|
47 | + return !in_array(env('CACHE_DRIVER', 'file'), ['file', 'database']); |
|
48 | 48 | } |
49 | 49 | } |
@@ -15,15 +15,15 @@ discard block |
||
15 | 15 | $presenter = $widget->presenter; |
16 | 16 | $this->checkPresenterExists($presenter); |
17 | 17 | } else { |
18 | - $presenter = get_class($widget).'Presenter'; |
|
19 | - if (! class_exists($presenter)) { |
|
18 | + $presenter = get_class($widget) . 'Presenter'; |
|
19 | + if (!class_exists($presenter)) { |
|
20 | 20 | return $widget->presenter = null; |
21 | 21 | } |
22 | 22 | } |
23 | 23 | |
24 | 24 | $this->checkPresentMethodExists($presenter); |
25 | 25 | |
26 | - $widget->presenter = $presenter.'@present'; |
|
26 | + $widget->presenter = $presenter . '@present'; |
|
27 | 27 | } |
28 | 28 | |
29 | 29 | /** |
@@ -31,8 +31,8 @@ discard block |
||
31 | 31 | */ |
32 | 32 | private function checkPresentMethodExists($presenter) |
33 | 33 | { |
34 | - if (! method_exists($presenter, 'present')) { |
|
35 | - throw new \InvalidArgumentException("'present' method not found on : ".$presenter); |
|
34 | + if (!method_exists($presenter, 'present')) { |
|
35 | + throw new \InvalidArgumentException("'present' method not found on : " . $presenter); |
|
36 | 36 | } |
37 | 37 | } |
38 | 38 | |
@@ -41,7 +41,7 @@ discard block |
||
41 | 41 | */ |
42 | 42 | private function checkPresenterExists($presenter) |
43 | 43 | { |
44 | - if (! class_exists($presenter)) { |
|
44 | + if (!class_exists($presenter)) { |
|
45 | 45 | throw new \InvalidArgumentException("Presenter Class [{$presenter}] not found."); |
46 | 46 | } |
47 | 47 | } |
@@ -60,7 +60,7 @@ |
||
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 | } |
@@ -23,7 +23,7 @@ |
||
23 | 23 | */ |
24 | 24 | public function widgetShouldUseCache() |
25 | 25 | { |
26 | - return (env('WIDGET_CACHE', false) !== false) && (! app()->environment('testing')); |
|
26 | + return (env('WIDGET_CACHE', false) !== false) && (!app()->environment('testing')); |
|
27 | 27 | } |
28 | 28 | |
29 | 29 | /** |
@@ -17,12 +17,12 @@ |
||
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 [{$className}View] not found by: '".get_class($widget)." '"); |
|
24 | + if (!view()->exists($widget->template)) { |
|
25 | + throw new \InvalidArgumentException("View file [{$className}View] not found by: '" . get_class($widget) . " '"); |
|
26 | 26 | } |
27 | 27 | } |
28 | 28 | } |
@@ -24,7 +24,7 @@ discard block |
||
24 | 24 | */ |
25 | 25 | private function checkControllerExists($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 |
||
34 | 34 | */ |
35 | 35 | private function checkDataMethodExists($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 |
@@ -25,7 +25,7 @@ discard block |
||
25 | 25 | */ |
26 | 26 | public function renderWidget($widget, ...$args) |
27 | 27 | { |
28 | - if(is_string($widget)) |
|
28 | + if (is_string($widget)) |
|
29 | 29 | { |
30 | 30 | $widget = $this->_makeWidgetObj($widget); |
31 | 31 | } |
@@ -52,7 +52,7 @@ discard block |
||
52 | 52 | private function _generateHtml($widget, ...$args) |
53 | 53 | { |
54 | 54 | // Everything inside this function is executed only when the cache is not available. |
55 | - $expensivePhpCode = function () use ($widget, $args) { |
|
55 | + $expensivePhpCode = function() use ($widget, $args) { |
|
56 | 56 | $this->_makeDataForView($widget, $args); |
57 | 57 | // render the template with the resulting data. |
58 | 58 | return $this->renderTemplate($widget); |
@@ -111,7 +111,7 @@ discard block |
||
111 | 111 | */ |
112 | 112 | private function _makeWidgetObj($widget) |
113 | 113 | { |
114 | - $widget = app()->getNamespace().'Widgets\\'.$widget; |
|
114 | + $widget = app()->getNamespace() . 'Widgets\\' . $widget; |
|
115 | 115 | return $widgetObj = app($widget); |
116 | 116 | } |
117 | 117 | } |
@@ -30,12 +30,12 @@ discard block |
||
30 | 30 | { |
31 | 31 | $tpl = $this->widget->template; |
32 | 32 | if (str_contains($tpl, 'Widgets::')) { |
33 | - $tpl = str_replace('Widgets::', app()->getNamespace().'Widgets\\', $tpl); |
|
33 | + $tpl = str_replace('Widgets::', app()->getNamespace() . 'Widgets\\', $tpl); |
|
34 | 34 | } |
35 | 35 | |
36 | 36 | $tpl = str_replace('.', '\\', $tpl); |
37 | 37 | |
38 | - $this->html = "<span title='WidgetObj : ".get_class($this->widget).".php
Template : {$tpl}.blade.php{$this->cacheState()}>{$this->html}</span>"; |
|
38 | + $this->html = "<span title='WidgetObj : " . get_class($this->widget) . ".php
Template : {$tpl}.blade.php{$this->cacheState()}>{$this->html}</span>"; |
|
39 | 39 | } |
40 | 40 | |
41 | 41 | /** |
@@ -44,7 +44,7 @@ discard block |
||
44 | 44 | */ |
45 | 45 | private function cacheState() |
46 | 46 | { |
47 | - if (! $this->policies->widgetShouldUseCache()) { |
|
47 | + if (!$this->policies->widgetShouldUseCache()) { |
|
48 | 48 | return ' 
Cache: is globally turned off (You should put "WIDGET_CACHE=true" in .env) '; |
49 | 49 | } |
50 | 50 | |
@@ -53,6 +53,6 @@ discard block |
||
53 | 53 | |
54 | 54 | private function addHtmlComments() |
55 | 55 | { |
56 | - $this->html = "<!-- '{".get_class($this->widget)."' Widget Start -->".$this->html."<!-- '".get_class($this->widget)."' Widget End -->"; |
|
56 | + $this->html = "<!-- '{" . get_class($this->widget) . "' Widget Start -->" . $this->html . "<!-- '" . get_class($this->widget) . "' Widget End -->"; |
|
57 | 57 | } |
58 | 58 | } |