Completed
Pull Request — master (#10)
by
unknown
05:58
created
Contentful/Commands/Generators/Definitions/NumberDefinition.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
Contentful/Commands/Generators/Definitions/SymbolDefinition.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
Contentful/Commands/Generators/Definitions/LocationDefinition.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
Distilleries/Contentful/Commands/Generators/Definitions/DateDefinition.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
Distilleries/Contentful/Commands/Generators/Definitions/ArrayDefinition.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -13,13 +13,13 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
Contentful/Commands/Generators/Definitions/IntegerDefinition.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
Distilleries/Contentful/Commands/Generators/Definitions/LinkDefinition.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -13,13 +13,13 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
Contentful/Commands/Generators/Definitions/BooleanDefinition.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
src/Distilleries/Contentful/Commands/Generators/AbstractGenerator.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 }
Please login to merge, or discard this patch.