@@ -131,7 +131,7 @@ |
||
131 | 131 | |
132 | 132 | array_pop($path); |
133 | 133 | |
134 | - foreach($path as $step) |
|
134 | + foreach ($path as $step) |
|
135 | 135 | { |
136 | 136 | $loc = &$loc[$step]; |
137 | 137 | } |
@@ -5,7 +5,7 @@ |
||
5 | 5 | use Illuminate\Support\Collection; |
6 | 6 | use Illuminate\Support\ServiceProvider; |
7 | 7 | |
8 | -class ChartServiceProvider extends ServiceProvider{ |
|
8 | +class ChartServiceProvider extends ServiceProvider { |
|
9 | 9 | |
10 | 10 | /** |
11 | 11 | * Indicates if loading of the provider is deferred. |
@@ -34,7 +34,7 @@ |
||
34 | 34 | */ |
35 | 35 | public function handle($key, $content) |
36 | 36 | { |
37 | - if ($key == 'series' && (! $this->cascade || starts_with($this->cascade, 'series.'))) { |
|
37 | + if ($key == 'series' && (!$this->cascade || starts_with($this->cascade, 'series.'))) { |
|
38 | 38 | $content = [$content]; |
39 | 39 | } |
40 | 40 |