@@ -15,7 +15,7 @@ discard block |
||
15 | 15 | */ |
16 | 16 | public static function views($path) |
17 | 17 | { |
18 | - return static::basePath().'/resources/views'.$path; |
|
18 | + return static::basePath() . '/resources/views' . $path; |
|
19 | 19 | } |
20 | 20 | |
21 | 21 | public static function basePath(): string |
@@ -25,7 +25,7 @@ discard block |
||
25 | 25 | |
26 | 26 | public static function config($path) |
27 | 27 | { |
28 | - return static::basePath().'/config'.$path; |
|
28 | + return static::basePath() . '/config' . $path; |
|
29 | 29 | } |
30 | 30 | |
31 | 31 | } |
@@ -24,7 +24,7 @@ |
||
24 | 24 | protected function bootFormbuilderFormsControllerTrait() |
25 | 25 | { |
26 | 26 | $this->after( |
27 | - function () { |
|
27 | + function() { |
|
28 | 28 | $this->registerFormbuilderViewPaths(); |
29 | 29 | } |
30 | 30 | ); |
@@ -23,7 +23,7 @@ |
||
23 | 23 | 'paths' => [ |
24 | 24 | 'form-builder' => [ |
25 | 25 | 'namespace' => 'ByTIC\FormBuilder\Fields', |
26 | - 'path' => PathsHelpers::basePath().'/src/FormFields/Types', |
|
26 | + 'path' => PathsHelpers::basePath() . '/src/FormFields/Types', |
|
27 | 27 | ], |
28 | 28 | ], |
29 | 29 | ], |
@@ -20,7 +20,7 @@ |
||
20 | 20 | public function change() |
21 | 21 | { |
22 | 22 | $table_forms = PackageConfig::tablesForms(); |
23 | - $table_pivot = PackageConfig::tablesForms().'_pivot'; |
|
23 | + $table_pivot = PackageConfig::tablesForms() . '_pivot'; |
|
24 | 24 | |
25 | 25 | $this->table($table_pivot) |
26 | 26 | ->addForeignKey( |