@@ -9,7 +9,7 @@ discard block |
||
9 | 9 | */ |
10 | 10 | public function modelGetter() |
11 | 11 | { |
12 | - $stubPath = __DIR__ . '/stubs/float.stub'; |
|
12 | + $stubPath = __DIR__.'/stubs/float.stub'; |
|
13 | 13 | |
14 | 14 | return self::getStub($stubPath, [ |
15 | 15 | 'field' => $this->id(), |
@@ -22,6 +22,6 @@ discard block |
||
22 | 22 | */ |
23 | 23 | public function modelProperty() |
24 | 24 | { |
25 | - return ' * @property float $' . $this->snakeId(); |
|
25 | + return ' * @property float $'.$this->snakeId(); |
|
26 | 26 | } |
27 | 27 | } |
@@ -9,7 +9,7 @@ discard block |
||
9 | 9 | */ |
10 | 10 | public function modelGetter() |
11 | 11 | { |
12 | - $stubPath = __DIR__ . '/stubs/string.stub'; |
|
12 | + $stubPath = __DIR__.'/stubs/string.stub'; |
|
13 | 13 | |
14 | 14 | return self::getStub($stubPath, [ |
15 | 15 | 'field' => $this->id(), |
@@ -22,6 +22,6 @@ discard block |
||
22 | 22 | */ |
23 | 23 | public function modelProperty() |
24 | 24 | { |
25 | - return ' * @property string $' . $this->snakeId(); |
|
25 | + return ' * @property string $'.$this->snakeId(); |
|
26 | 26 | } |
27 | 27 | } |
@@ -9,7 +9,7 @@ discard block |
||
9 | 9 | */ |
10 | 10 | public function modelGetter() |
11 | 11 | { |
12 | - $stubPath = __DIR__ . '/stubs/location.stub'; |
|
12 | + $stubPath = __DIR__.'/stubs/location.stub'; |
|
13 | 13 | |
14 | 14 | return self::getStub($stubPath, [ |
15 | 15 | 'field' => $this->id(), |
@@ -22,6 +22,6 @@ discard block |
||
22 | 22 | */ |
23 | 23 | public function modelProperty() |
24 | 24 | { |
25 | - return ' * @property \Distilleries\Contentful\Models\Location $' . $this->snakeId(); |
|
25 | + return ' * @property \Distilleries\Contentful\Models\Location $'.$this->snakeId(); |
|
26 | 26 | } |
27 | 27 | } |
@@ -9,7 +9,7 @@ discard block |
||
9 | 9 | */ |
10 | 10 | public function modelGetter() |
11 | 11 | { |
12 | - $stubPath = __DIR__ . '/stubs/datetime.stub'; |
|
12 | + $stubPath = __DIR__.'/stubs/datetime.stub'; |
|
13 | 13 | |
14 | 14 | return self::getStub($stubPath, [ |
15 | 15 | 'field' => $this->id(), |
@@ -22,6 +22,6 @@ discard block |
||
22 | 22 | */ |
23 | 23 | public function modelProperty() |
24 | 24 | { |
25 | - return ' * @property \Illuminate\Support\Carbon $' . $this->snakeId(); |
|
25 | + return ' * @property \Illuminate\Support\Carbon $'.$this->snakeId(); |
|
26 | 26 | } |
27 | 27 | } |
@@ -13,13 +13,13 @@ discard block |
||
13 | 13 | { |
14 | 14 | switch ($this->field['items']['type']) { |
15 | 15 | case 'Link': |
16 | - $stubPath = __DIR__ . '/stubs/entries.stub'; |
|
16 | + $stubPath = __DIR__.'/stubs/entries.stub'; |
|
17 | 17 | break; |
18 | 18 | case 'Symbol': |
19 | - $stubPath = __DIR__ . '/stubs/string.stub'; |
|
19 | + $stubPath = __DIR__.'/stubs/string.stub'; |
|
20 | 20 | break; |
21 | 21 | default: |
22 | - throw new Exception('Unknown Array items type "' . $this->field['items']['type'] . '"'); |
|
22 | + throw new Exception('Unknown Array items type "'.$this->field['items']['type'].'"'); |
|
23 | 23 | } |
24 | 24 | |
25 | 25 | return self::getStub($stubPath, [ |
@@ -43,9 +43,9 @@ discard block |
||
43 | 43 | $property .= 'string'; |
44 | 44 | break; |
45 | 45 | default: |
46 | - throw new Exception('Unknown Array items type "' . $this->field['items']['type'] . '"'); |
|
46 | + throw new Exception('Unknown Array items type "'.$this->field['items']['type'].'"'); |
|
47 | 47 | } |
48 | 48 | |
49 | - return $property . ' $' . $this->snakeId(); |
|
49 | + return $property.' $'.$this->snakeId(); |
|
50 | 50 | } |
51 | 51 | } |
@@ -9,7 +9,7 @@ discard block |
||
9 | 9 | */ |
10 | 10 | public function modelGetter() |
11 | 11 | { |
12 | - $stubPath = __DIR__ . '/stubs/integer.stub'; |
|
12 | + $stubPath = __DIR__.'/stubs/integer.stub'; |
|
13 | 13 | |
14 | 14 | return self::getStub($stubPath, [ |
15 | 15 | 'field' => $this->id(), |
@@ -22,6 +22,6 @@ discard block |
||
22 | 22 | */ |
23 | 23 | public function modelProperty() |
24 | 24 | { |
25 | - return ' * @property int $' . $this->snakeId(); |
|
25 | + return ' * @property int $'.$this->snakeId(); |
|
26 | 26 | } |
27 | 27 | } |
@@ -13,13 +13,13 @@ discard block |
||
13 | 13 | { |
14 | 14 | switch ($this->field['linkType']) { |
15 | 15 | case 'Entry': |
16 | - $stubPath = __DIR__ . '/stubs/entry.stub'; |
|
16 | + $stubPath = __DIR__.'/stubs/entry.stub'; |
|
17 | 17 | break; |
18 | 18 | case 'Asset': |
19 | - $stubPath = __DIR__ . '/stubs/asset.stub'; |
|
19 | + $stubPath = __DIR__.'/stubs/asset.stub'; |
|
20 | 20 | break; |
21 | 21 | default: |
22 | - throw new Exception('Unknown Link items type "' . $this->field['linkType'] . '"'); |
|
22 | + throw new Exception('Unknown Link items type "'.$this->field['linkType'].'"'); |
|
23 | 23 | } |
24 | 24 | |
25 | 25 | return self::getStub($stubPath, [ |
@@ -43,9 +43,9 @@ discard block |
||
43 | 43 | $property .= '\Distilleries\Contentful\Models\Asset'; |
44 | 44 | break; |
45 | 45 | default: |
46 | - throw new Exception('Unknown Link items type "' . $this->field['items']['type'] . '"'); |
|
46 | + throw new Exception('Unknown Link items type "'.$this->field['items']['type'].'"'); |
|
47 | 47 | } |
48 | 48 | |
49 | - return $property . ' $' . $this->snakeId(); |
|
49 | + return $property.' $'.$this->snakeId(); |
|
50 | 50 | } |
51 | 51 | } |
@@ -9,7 +9,7 @@ discard block |
||
9 | 9 | */ |
10 | 10 | public function modelGetter() |
11 | 11 | { |
12 | - $stubPath = __DIR__ . '/stubs/boolean.stub'; |
|
12 | + $stubPath = __DIR__.'/stubs/boolean.stub'; |
|
13 | 13 | |
14 | 14 | return self::getStub($stubPath, [ |
15 | 15 | 'field' => $this->id(), |
@@ -22,6 +22,6 @@ discard block |
||
22 | 22 | */ |
23 | 23 | public function modelProperty() |
24 | 24 | { |
25 | - return ' * @property bool $' . $this->snakeId(); |
|
25 | + return ' * @property bool $'.$this->snakeId(); |
|
26 | 26 | } |
27 | 27 | } |
@@ -38,7 +38,7 @@ discard block |
||
38 | 38 | */ |
39 | 39 | protected function tableName($id) |
40 | 40 | { |
41 | - return DB::getTablePrefix() . Str::plural(Str::snake($id)); |
|
41 | + return DB::getTablePrefix().Str::plural(Str::snake($id)); |
|
42 | 42 | } |
43 | 43 | |
44 | 44 | /** |
@@ -55,7 +55,7 @@ discard block |
||
55 | 55 | { |
56 | 56 | $content = file_get_contents($stubPath); |
57 | 57 | foreach ($replacements as $key => $value) { |
58 | - $content = str_replace('{{' . Str::upper($key) . '}}', $value, $content); |
|
58 | + $content = str_replace('{{'.Str::upper($key).'}}', $value, $content); |
|
59 | 59 | } |
60 | 60 | |
61 | 61 | file_put_contents($destPath, $content); |
@@ -98,8 +98,8 @@ discard block |
||
98 | 98 | ]], |
99 | 99 | ]; |
100 | 100 | |
101 | - $assetContentType['fields'] = array_map(function ($field) { |
|
102 | - if (! isset($field['required'])) { |
|
101 | + $assetContentType['fields'] = array_map(function($field) { |
|
102 | + if (!isset($field['required'])) { |
|
103 | 103 | $field['required'] = true; |
104 | 104 | } |
105 | 105 | $field['disabled'] = false; |
@@ -120,7 +120,7 @@ discard block |
||
120 | 120 | */ |
121 | 121 | protected function fieldDefinition($table, $field): ?DefinitionInterface |
122 | 122 | { |
123 | - $className = '\Distilleries\Contentful\Commands\Generators\Definitions\\' . $field['type'] . 'Definition'; |
|
123 | + $className = '\Distilleries\Contentful\Commands\Generators\Definitions\\'.$field['type'].'Definition'; |
|
124 | 124 | |
125 | 125 | if (class_exists($className)) { |
126 | 126 | return new $className($table, $field); |
@@ -137,6 +137,6 @@ discard block |
||
137 | 137 | */ |
138 | 138 | protected function isFieldEnabled($field): bool |
139 | 139 | { |
140 | - return ! $field['disabled'] && ! $field['omitted']; |
|
140 | + return !$field['disabled'] && !$field['omitted']; |
|
141 | 141 | } |
142 | 142 | } |