@@ -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 config('widgetize.enable_cache') && (! app()->environment('testing')); |
|
26 | + return config('widgetize.enable_cache') && (!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 \"{$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 | } |
@@ -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 "enable_cache" => true in config\widgetize.php) '; |
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 | } |
@@ -51,7 +51,7 @@ discard block |
||
51 | 51 | */ |
52 | 52 | private function persistToken($tag, $token) |
53 | 53 | { |
54 | - \Cache::forever('9z10_o6cg_r'.$tag, $token); |
|
54 | + \Cache::forever('9z10_o6cg_r' . $tag, $token); |
|
55 | 55 | } |
56 | 56 | |
57 | 57 | /** |
@@ -60,6 +60,6 @@ discard block |
||
60 | 60 | */ |
61 | 61 | private function getPersistedToken($tag) |
62 | 62 | { |
63 | - return \Cache::get('9z10_o6cg_r'.$tag, null); |
|
63 | + return \Cache::get('9z10_o6cg_r' . $tag, null); |
|
64 | 64 | } |
65 | 65 | } |
@@ -44,7 +44,7 @@ discard block |
||
44 | 44 | /** |
45 | 45 | * Set token in Memory for fast access within the same request. |
46 | 46 | * @param $tag string |
47 | - * @param $token string |
|
47 | + * @param string $token string |
|
48 | 48 | * @return string |
49 | 49 | */ |
50 | 50 | private function setTokenInMemory($tag, $token) |
@@ -55,7 +55,7 @@ discard block |
||
55 | 55 | /** |
56 | 56 | * Save token to disk for later requests. |
57 | 57 | * @param $tag string |
58 | - * @param $token string |
|
58 | + * @param string $token string |
|
59 | 59 | */ |
60 | 60 | private function persistToken($tag, $token) |
61 | 61 | { |
@@ -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) (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) { |
@@ -28,7 +28,7 @@ discard block |
||
28 | 28 | */ |
29 | 29 | public function normalizeCacheTags($widget) |
30 | 30 | { |
31 | - if (! property_exists($widget, 'cacheTags')) { |
|
31 | + if (!property_exists($widget, 'cacheTags')) { |
|
32 | 32 | return $widget->cacheTags = []; |
33 | 33 | } |
34 | 34 |
@@ -109,7 +109,7 @@ |
||
109 | 109 | } |
110 | 110 | |
111 | 111 | /** |
112 | - * @param $widget object |
|
112 | + * @param string $widget object |
|
113 | 113 | * @return \Illuminate\Foundation\Application|mixed |
114 | 114 | */ |
115 | 115 | private function _makeWidgetObj($widget) |
@@ -51,7 +51,7 @@ discard block |
||
51 | 51 | private function _generateHtml($widget, ...$args) |
52 | 52 | { |
53 | 53 | // Everything inside this function is executed only when the cache is not available. |
54 | - $expensivePhpCode = function () use ($widget, $args) { |
|
54 | + $expensivePhpCode = function() use ($widget, $args) { |
|
55 | 55 | $this->makeDataForView($widget, $args); |
56 | 56 | // render the template with the resulting data. |
57 | 57 | return $this->renderTemplate($widget); |
@@ -118,7 +118,7 @@ discard block |
||
118 | 118 | return app($widget); |
119 | 119 | } |
120 | 120 | |
121 | - $widget = app()->getNamespace().'Widgets\\'.$widget; |
|
121 | + $widget = app()->getNamespace() . 'Widgets\\' . $widget; |
|
122 | 122 | |
123 | 123 | return app($widget); |
124 | 124 | } |
@@ -111,7 +111,7 @@ |
||
111 | 111 | |
112 | 112 | /** |
113 | 113 | * Creates the widget class. |
114 | - * @return bool |
|
114 | + * @return false|null |
|
115 | 115 | */ |
116 | 116 | private function _makeWidgetClass() |
117 | 117 | { |
@@ -36,7 +36,7 @@ discard block |
||
36 | 36 | { |
37 | 37 | $this->_makeWidgetClass(); |
38 | 38 | |
39 | - if (! $this->option('plain')) { |
|
39 | + if (!$this->option('plain')) { |
|
40 | 40 | $this->createView(); |
41 | 41 | } |
42 | 42 | } |
@@ -51,14 +51,14 @@ discard block |
||
51 | 51 | $path = $this->_getViewPath(); |
52 | 52 | |
53 | 53 | if ($this->files->exists($path)) { |
54 | - $this->error($this->qualifyClass($this->getNameInput()).'View.blade.php - Already exists! (@_@)'); |
|
54 | + $this->error($this->qualifyClass($this->getNameInput()) . 'View.blade.php - Already exists! (@_@)'); |
|
55 | 55 | |
56 | 56 | return; |
57 | 57 | } |
58 | 58 | |
59 | 59 | $this->files->put($path, $this->_getViewStub()); |
60 | 60 | |
61 | - $this->info(' - '.$this->qualifyClass($this->getNameInput()).'View.blade.php - was created. (^_^)'); |
|
61 | + $this->info(' - ' . $this->qualifyClass($this->getNameInput()) . 'View.blade.php - was created. (^_^)'); |
|
62 | 62 | } |
63 | 63 | |
64 | 64 | /** |
@@ -70,7 +70,7 @@ discard block |
||
70 | 70 | { |
71 | 71 | $stubName = $this->option('plain') ? 'widget_plain' : 'widget'; |
72 | 72 | |
73 | - return __DIR__."/../stubs/$stubName.stub"; |
|
73 | + return __DIR__ . "/../stubs/$stubName.stub"; |
|
74 | 74 | } |
75 | 75 | |
76 | 76 | /** |
@@ -82,7 +82,7 @@ discard block |
||
82 | 82 | */ |
83 | 83 | protected function getDefaultNamespace($rootNamespace) |
84 | 84 | { |
85 | - return $rootNamespace.'\\Widgets'; |
|
85 | + return $rootNamespace . '\\Widgets'; |
|
86 | 86 | } |
87 | 87 | |
88 | 88 | /** |
@@ -123,7 +123,7 @@ discard block |
||
123 | 123 | // to create the class and overwrite the user's code. So, we will bail out so the |
124 | 124 | // code is untouched. Otherwise, we will continue generating this class' files. |
125 | 125 | if ($this->alreadyExists($this->getNameInput())) { |
126 | - $this->error($this->qualifyClass($this->getNameInput()).'.php - Already exists (@_@)'); |
|
126 | + $this->error($this->qualifyClass($this->getNameInput()) . '.php - Already exists (@_@)'); |
|
127 | 127 | |
128 | 128 | return false; |
129 | 129 | } |
@@ -135,7 +135,7 @@ discard block |
||
135 | 135 | |
136 | 136 | $this->files->put($path, $this->buildClass($name)); |
137 | 137 | |
138 | - $this->info(' - '.$name.'.php - was created. (^_^)'); |
|
138 | + $this->info(' - ' . $name . '.php - was created. (^_^)'); |
|
139 | 139 | } |
140 | 140 | |
141 | 141 | /** |