Passed
Push — master ( 9c82b2...472045 )
by Prateek
07:54 queued 04:44
created
src/resources/Controllers/Backend/UploadController.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -26,8 +26,8 @@  discard block
 block discarded – undo
26 26
 
27 27
         $valid = $this->validateUpload($file, $moduleName, $field);
28 28
 
29
-        if($valid){
30
-            $imagename = $this->getWritableFilename(str_slug(pathinfo($file->getClientOriginalName(), PATHINFO_FILENAME)).'.'.$file->getClientOriginalExtension(), $moduleName, true);;
29
+        if ($valid) {
30
+            $imagename = $this->getWritableFilename(str_slug(pathinfo($file->getClientOriginalName(), PATHINFO_FILENAME)).'.'.$file->getClientOriginalExtension(), $moduleName, true); ;
31 31
     
32 32
             $destinationPath = storage_path('images/'.$moduleName);
33 33
     
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
         $files = [];
47 47
 
48 48
         foreach ($request->file('file') as $file) {
49
-            $imagename = $this->getWritableFilename(str_slug(pathinfo($file->getClientOriginalName(), PATHINFO_FILENAME)).'.'.$file->getClientOriginalExtension(), $moduleName, true);;
49
+            $imagename = $this->getWritableFilename(str_slug(pathinfo($file->getClientOriginalName(), PATHINFO_FILENAME)).'.'.$file->getClientOriginalExtension(), $moduleName, true); ;
50 50
             $destinationPath = storage_path('images/'.$moduleName);
51 51
             try {
52 52
                 $file->move($destinationPath, $imagename);
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
             }
57 57
         }
58 58
 
59
-        if(!isset($error)){
59
+        if (!isset($error)) {
60 60
             return response()->json(['message' => 'File successfully uploaded', 'filenames' => $files, 'status' => 200], 200);
61 61
         }
62 62
 
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
     public function delete(Request $request)
67 67
     {
68 68
         $moduleName = $request->input('modelName');
69
-        $modelToCall = "App\\Models\\" . ucfirst($moduleName);
69
+        $modelToCall = "App\\Models\\".ucfirst($moduleName);
70 70
         $model = $modelToCall::find($request->input('modelId'));
71 71
         $field = $request->input('field');
72 72
         $filename = $model->$field;
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
      */
90 90
     public function process($filename, $moduleName)
91 91
     {
92
-        $messages=['errors'=>[]];
92
+        $messages = ['errors'=>[]];
93 93
         $tempFile = storage_path('images/'.$moduleName.'/'.$filename);
94 94
         $fileToWrite = $this->getWritableFilename($filename, $moduleName);
95 95
 
@@ -98,25 +98,25 @@  discard block
 block discarded – undo
98 98
         $methodToUse = $tempImage->width() > $tempImage->height() ? 'widen' : 'heighten';
99 99
 
100 100
         try {
101
-            $tempImage->$methodToUse(2000, function ($constraint){
101
+            $tempImage->$methodToUse(2000, function($constraint) {
102 102
                 $constraint->upsize();
103 103
             })->save($fileToWrite);
104 104
             $messages['success']['filename'] = $fileToWrite;
105 105
         } catch (\Exception $ex) {
106
-            $messages['errors'][] = [ 'fileError' => $ex->getMessage()];
106
+            $messages['errors'][] = ['fileError' => $ex->getMessage()];
107 107
         }
108 108
         return $messages;
109 109
     }
110 110
 
111
-    protected function getWritableFilename($filename, $moduleName, $is_storage=false)
111
+    protected function getWritableFilename($filename, $moduleName, $is_storage = false)
112 112
     {
113 113
         $dir = $is_storage ? $this->getPath(storage_path('images/'.$moduleName)) : $this->getPath(public_path('images/'.$moduleName));
114 114
         $path = $dir.'/'.$filename;
115 115
         if (file_exists($path)) {
116 116
             $filename = pathinfo($path, PATHINFO_FILENAME);
117
-            $filename .= rand(0,9).'.'.pathinfo($path, PATHINFO_EXTENSION);
117
+            $filename .= rand(0, 9).'.'.pathinfo($path, PATHINFO_EXTENSION);
118 118
             return $this->getWritableFilename($filename, $moduleName, $is_storage); 
119
-        }else{
119
+        } else {
120 120
             return $is_storage ? $filename : $path;
121 121
         }
122 122
     }
@@ -137,7 +137,7 @@  discard block
 block discarded – undo
137 137
 
138 138
         $file = array($field => $file);
139 139
 
140
-        $validator = Validator::make($file , [
140
+        $validator = Validator::make($file, [
141 141
             $field => $rules,
142 142
         ]);
143 143
 
Please login to merge, or discard this patch.
src/Generators/Frontend/View.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -12,23 +12,23 @@
 block discarded – undo
12 12
 
13 13
         $generatedFiles = [];
14 14
         foreach ($viewsToBeGenerated as $view) {
15
-            $viewTemplate = $this->buildTemplate('frontend/views/' . $view, [
15
+            $viewTemplate = $this->buildTemplate('frontend/views/'.$view, [
16 16
                 '{{modelNameSingularLowercase}}' => $this->module->getModelNameLowercase(),
17 17
                 '{{modelNamePlural}}'            => $this->module->getModelNamePlural(),
18 18
                 '{{moduleName}}'                 => $this->module->getModuleName()
19 19
             ]);
20 20
 
21
-            $fullFilePath = $this->getPath("resources/views/" . $this->module->getModuleName()) . "/{$view}.blade.php";
21
+            $fullFilePath = $this->getPath("resources/views/".$this->module->getModuleName())."/{$view}.blade.php";
22 22
             file_put_contents($fullFilePath, $viewTemplate);
23
-            $generatedFiles[] =  $fullFilePath;
23
+            $generatedFiles[] = $fullFilePath;
24 24
         }
25 25
 
26
-        $layoutPath = $this->getPath("resources/views/laragen/layouts/") . "app.blade.php";
27
-        if(!file_exists($layoutPath)){
26
+        $layoutPath = $this->getPath("resources/views/laragen/layouts/")."app.blade.php";
27
+        if (!file_exists($layoutPath)) {
28 28
 
29 29
             $viewTemplate = $this->buildTemplate('frontend/views/layouts/app', []);
30 30
             file_put_contents($layoutPath, $viewTemplate);
31
-            $generatedFiles[] =  $layoutPath;
31
+            $generatedFiles[] = $layoutPath;
32 32
         }
33 33
 
34 34
         return $generatedFiles;
Please login to merge, or discard this patch.
src/Generators/Backend/Request.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -24,10 +24,10 @@  discard block
 block discarded – undo
24 24
     protected function getRules()
25 25
     {
26 26
         $validation = [];
27
-        $moduleData =$this->module->getData();
27
+        $moduleData = $this->module->getData();
28 28
         $modelname = $this->module->getModelNameLowercase();
29 29
 
30
-        foreach($moduleData as $column => $options){
30
+        foreach ($moduleData as $column => $options) {
31 31
             $columnOptions = new DataOption($column, $options);
32 32
             $type = $columnOptions->getType();
33 33
             $rules = $columnOptions->optionArray();
@@ -35,20 +35,20 @@  discard block
 block discarded – undo
35 35
             $valid_types = ['text' => 'string',
36 36
                             'datetime'=> 'date_format:Y-m-d H:i:s',
37 37
             ];
38
-            if(array_key_exists($type, $valid_types)){
38
+            if (array_key_exists($type, $valid_types)) {
39 39
                 $type = $valid_types[$type];
40 40
             }
41 41
 
42
-            if(in_array($type, DataOption::$fileTypes) || in_array($type, DataOption::$specialTypes)) continue;
42
+            if (in_array($type, DataOption::$fileTypes) || in_array($type, DataOption::$specialTypes)) continue;
43 43
 
44 44
             $uniqueValidation = '\''.$column.'\' => ($this->route()->'.$modelname.') ? ';
45 45
             $uniqueValidation .= '\''.DataOption::COLUMN_UNIQUE.':'.$this->module->getModulename().','.$column.','.'\''.'.$this->route()->'.$modelname.'->id';
46 46
             $uniqueValidation .= ':\''.DataOption::COLUMN_UNIQUE.':'.$this->module->getModulename().'\'';
47 47
 
48 48
             if ($columnOptions->isUnique()) {
49
-                $validation[]= $uniqueValidation;
49
+                $validation[] = $uniqueValidation;
50 50
             } else {
51
-                $validation[]= empty($rules) ? "'".$column."' => '".$type."'": "'".$column."' => '".$type."|".implode('|',$rules)."'";
51
+                $validation[] = empty($rules) ? "'".$column."' => '".$type."'" : "'".$column."' => '".$type."|".implode('|', $rules)."'";
52 52
             }
53 53
         }
54 54
         $delimiter = ",\n{$columnOptions->getTabs(3)}";
Please login to merge, or discard this patch.
src/Generators/Backend/Controller.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -24,16 +24,16 @@  discard block
 block discarded – undo
24 24
         return $fullFilePath;
25 25
     }
26 26
 
27
-    protected function getFileUploads(){
27
+    protected function getFileUploads() {
28 28
         $fileUploads = "";
29 29
         $fileFields = $this->module->getFileColumns();
30
-        if(empty($fileFields)) return "";
31
-        if(count($fileFields)>1){
30
+        if (empty($fileFields)) return "";
31
+        if (count($fileFields) > 1) {
32 32
             $fileUploads .= $this->buildTemplate('backend/fragments/upload-process', [
33 33
                 '{{modelNameLowercase}}' => $this->module->getModelNameLowercase(),
34 34
                 '{{fileFields}}'         => implode('", "', $fileFields),
35 35
             ]);
36
-        }else{
36
+        } else {
37 37
             $fileField = $fileFields[0];
38 38
             $fileUploads .= 'if ($request->has("'.$fileField.'")) {'.PHP_EOL;
39 39
             $fileUploads .= $this->getTabs(3).'$this->uploader->process($request->input("'.$fileField.'"), "category");'.PHP_EOL;
@@ -42,12 +42,12 @@  discard block
 block discarded – undo
42 42
         return $fileUploads;
43 43
     }
44 44
 
45
-    protected function getForeignData(){
45
+    protected function getForeignData() {
46 46
         $foreignData = "";
47 47
         $parents = $this->module->getForeignData();
48
-        foreach($parents as $parent){
48
+        foreach ($parents as $parent) {
49 49
             $foreignData .= "'".$parent['parentModule']."' => ".$parent['parentModel']."::all()";
50
-            $foreignData .= ($parent==last($parents)) ? '' : ', ';
50
+            $foreignData .= ($parent == last($parents)) ? '' : ', ';
51 51
         }
52 52
         return $foreignData;
53 53
     }
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
     public function getFileExtentionData()
71 71
     {
72 72
         $controller_ = '';
73
-        foreach($this->module->getFileColumns('file') as $column){
73
+        foreach ($this->module->getFileColumns('file') as $column) {
74 74
             $controller_ = "$".$this->module->getModelNameLowercase()."['".$column."_extention'] =".' getFileExtention($'.$this->module->getModelNameLowercase()."->".$column.");";
75 75
         }
76 76
         return $controller_;
Please login to merge, or discard this patch.
src/Generators/Backend/View.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
 		$generatedFiles = [];
19 19
 		
20 20
         foreach ($viewsToBeGenerated as $view) {
21
-            $viewTemplate = $this->buildTemplate('backend/views/' . $view, [
21
+            $viewTemplate = $this->buildTemplate('backend/views/'.$view, [
22 22
                 '{{headings}}' 			 => $this->getHeadings(),
23 23
                 '{{moduleDisplayName}}'  => $this->module->getModuleDisplayName(),
24 24
                 '{{modelNameLowercase}}' => str_singular($this->module->getModuleName()),
@@ -26,14 +26,14 @@  discard block
 block discarded – undo
26 26
                 '{{moduleName}}'         => $this->module->getModuleName()
27 27
             ]);
28 28
 
29
-            $fullFilePath = $this->getPath("resources/views/backend/" . $this->module->getModuleName()) . "/{$view}.blade.php";
29
+            $fullFilePath = $this->getPath("resources/views/backend/".$this->module->getModuleName())."/{$view}.blade.php";
30 30
             file_put_contents($fullFilePath, $viewTemplate);
31
-            $generatedFiles[] =  $fullFilePath;
31
+            $generatedFiles[] = $fullFilePath;
32 32
         }
33 33
 
34 34
         $mainMenuFile = $this->getPath("resources/views/backend/includes/")."main_menu.blade.php";
35 35
 
36
-        if(self::$initializeFlag++ == 0){
36
+        if (self::$initializeFlag++ == 0) {
37 37
             $this->initializeFiles([
38 38
                 $mainMenuFile => "backend/views/includes/main_menu",
39 39
             ]);
@@ -56,9 +56,9 @@  discard block
 block discarded – undo
56 56
         return $generatedFiles;
57 57
 	}
58 58
 
59
-	public function getHeadings(){
59
+	public function getHeadings() {
60 60
         $columns = $this->module->getBackendColumnTitles();
61
-        $headings= "";
61
+        $headings = "";
62 62
         foreach ($columns as $column) {
63 63
             $headings .= "<th>".$column."</th>";
64 64
         }
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
     public function formGenerateCreate()
69 69
     {
70 70
         $viewTemplate = '';
71
-        foreach($this->module->getData() as $column => $options){
71
+        foreach ($this->module->getData() as $column => $options) {
72 72
             $columnOptions = new DataOption($column, $options);
73 73
             $type = $columnOptions->getType();
74 74
             $viewTemplate .= $this->buildTemplate('backend/views/formelements/'.$type, [
@@ -86,10 +86,10 @@  discard block
 block discarded – undo
86 86
             '{{createElements}}'             => $viewTemplate,
87 87
         ]);
88 88
 
89
-        $formFilePath = $this->getPath("resources/views/backend/" . $this->module->getModuleName()) . "/_form.blade.php";
89
+        $formFilePath = $this->getPath("resources/views/backend/".$this->module->getModuleName())."/_form.blade.php";
90 90
         file_put_contents($formFilePath, $formTemplate);
91 91
 
92
-        $generatedFiles[] =  $formFilePath;
92
+        $generatedFiles[] = $formFilePath;
93 93
         return $generatedFiles;
94 94
 
95 95
     }
@@ -98,13 +98,13 @@  discard block
 block discarded – undo
98 98
     {
99 99
         $modules = config('laragen.modules');
100 100
         $displayColumn = "";
101
-        if(isset($modules[$parentModule])){
101
+        if (isset($modules[$parentModule])) {
102 102
             $module = $modules[$parentModule];
103 103
             $module = new Module($parentModule, $module);
104 104
             $displayColumn = $module->getDisplayColumn();
105 105
         }
106 106
 
107
-        if  ($parentModule=='users'){
107
+        if ($parentModule == 'users') {
108 108
             $displayColumn = 'name';
109 109
         }
110 110
         return $displayColumn;
Please login to merge, or discard this patch.
src/Generators/Common/Migration.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -99,20 +99,20 @@  discard block
 block discarded – undo
99 99
 
100 100
     protected function getMultipleSchema($multipleData)
101 101
     {
102
-        $schema =  '$table->bigInteger("'.$this->module->getModelNameLowercase().'_id")->unsigned()->nullable();'.PHP_EOL.$this->getTabs(3);
102
+        $schema = '$table->bigInteger("'.$this->module->getModelNameLowercase().'_id")->unsigned()->nullable();'.PHP_EOL.$this->getTabs(3);
103 103
         $schema .= "\$table->foreign('".$this->module->getModelNameLowercase()."_id')->references('id')->on('".$this->module->getModulename()."')->onDelete('set null');";
104 104
 
105
-        foreach($multipleData as $column => $optionString){
105
+        foreach ($multipleData as $column => $optionString) {
106 106
             $option = new DataOption($column, $optionString);
107 107
             $schema .= $option->getSchema();
108
-            $schema .=  ''.PHP_EOL.$this->getTabs(3);
108
+            $schema .= ''.PHP_EOL.$this->getTabs(3);
109 109
         }
110 110
         return $schema;
111 111
     }
112 112
 
113 113
     protected function getPivotSchema($related)
114 114
     {
115
-        $schema =  '$table->bigInteger("'.$this->module->getModelNameLowercase().'_id")->unsigned()->nullable();'.PHP_EOL.$this->getTabs(3);
115
+        $schema = '$table->bigInteger("'.$this->module->getModelNameLowercase().'_id")->unsigned()->nullable();'.PHP_EOL.$this->getTabs(3);
116 116
         $schema .= "\$table->foreign('".$this->module->getModelNameLowercase()."_id')->references('id')->on('".$this->module->getModulename()."')->onDelete('set null');";
117 117
 
118 118
         $schema .= '$table->bigInteger("'.str_singular($related).'_id")->unsigned()->nullable();';
@@ -123,7 +123,7 @@  discard block
 block discarded – undo
123 123
 
124 124
     protected function getGallerySchema($gallery)
125 125
     {
126
-        $schema =  '$table->bigInteger("'.$this->module->getModelNameLowercase().'_id")->unsigned()->nullable();'.PHP_EOL.$this->getTabs(3);
126
+        $schema = '$table->bigInteger("'.$this->module->getModelNameLowercase().'_id")->unsigned()->nullable();'.PHP_EOL.$this->getTabs(3);
127 127
         $schema .= "\$table->foreign('".$this->module->getModelNameLowercase()."_id')->references('id')->on('".$this->module->getModulename()."')->onDelete('set null');";
128 128
         $schema .= '$table->string("filename", 128);';
129 129
         $schema .= '$table->timestamps();';
Please login to merge, or discard this patch.
src/Generators/Common/Seeder.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
         file_put_contents($fullFilePath, $factoryTemplate);
24 24
         $generatedFiles[] = $fullFilePath;
25 25
         
26
-        $laragenSeederFile = (self::$initializeFlag++ == 0) ? $this->initializeFile($this->getPath("database/seeds/")."LaragenSeeder.php", 'common/Seeder') :  $this->getPath("database/seeds/")."LaragenSeeder.php";
26
+        $laragenSeederFile = (self::$initializeFlag++ == 0) ? $this->initializeFile($this->getPath("database/seeds/")."LaragenSeeder.php", 'common/Seeder') : $this->getPath("database/seeds/")."LaragenSeeder.php";
27 27
 
28 28
         $this->insertIntoFile(
29 29
             $laragenSeederFile,
@@ -93,23 +93,23 @@  discard block
 block discarded – undo
93 93
 
94 94
         $dataDefinition = "";
95 95
         foreach ($this->module->getWritableColumns() as $columns) {
96
-            foreach($columns as $column => $type){
96
+            foreach ($columns as $column => $type) {
97 97
                 $specialTypes = array_keys($specialTypesToDefinition);
98
-                if(in_array($column,$specialTypes)){
99
-                    $dataDefinition .= $this->getTabs(2) . "'{$column}'" . " => " . '$faker->' . $specialTypesToDefinition[$column];
98
+                if (in_array($column, $specialTypes)) {
99
+                    $dataDefinition .= $this->getTabs(2)."'{$column}'"." => ".'$faker->'.$specialTypesToDefinition[$column];
100 100
                 } else {
101
-                    $dataDefinition .= $this->getTabs(2) . "'{$column}'" . " => " . '$faker->' . $typeToDefinition[$type];
101
+                    $dataDefinition .= $this->getTabs(2)."'{$column}'"." => ".'$faker->'.$typeToDefinition[$type];
102 102
                 }
103 103
 
104
-                if($column != last($columns)) {
105
-                    $dataDefinition .= "," . PHP_EOL;
104
+                if ($column != last($columns)) {
105
+                    $dataDefinition .= ",".PHP_EOL;
106 106
                 }
107 107
             }
108 108
         }
109 109
         return $dataDefinition;
110 110
     }
111 111
 
112
-    protected function getForeignData(){
112
+    protected function getForeignData() {
113 113
         $columns = $this->module->getForeignColumns('parent');
114 114
 
115 115
         $foreignData = "";
@@ -121,8 +121,8 @@  discard block
 block discarded – undo
121 121
                     '{{parentModel}}' => ucfirst(camel_case(str_singular($parent)))
122 122
                 ]);
123 123
                 
124
-                if($column != last($columns)) {
125
-                    $foreignData .= "," . PHP_EOL;
124
+                if ($column != last($columns)) {
125
+                    $foreignData .= ",".PHP_EOL;
126 126
                 }
127 127
             }
128 128
         }
Please login to merge, or discard this patch.
src/Models/Module.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -13,11 +13,11 @@  discard block
 block discarded – undo
13 13
     public function __construct($moduleName, $moduleData)
14 14
     {
15 15
         $this->module = (object) $moduleData;
16
-        $this->data = array_filter($moduleData, function($elem){
16
+        $this->data = array_filter($moduleData, function($elem) {
17 17
             return (is_array($elem)) ? false : true;
18 18
         });
19 19
         $this->multipleData = [];
20
-        $this->multipleData[] = array_filter($moduleData, function($elem){
20
+        $this->multipleData[] = array_filter($moduleData, function($elem) {
21 21
             return (is_array($elem)) ? true : false;
22 22
         });
23 23
 
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
         $data = ['S.N.'];
48 48
         foreach ($this->data as $column => $optionString) {
49 49
             $optionArray = explode('|', $optionString);
50
-            if (in_array($optionArray[0], ['string', 'int'])&&in_array($column, ['title', 'firstname', 'lastname', 'name'])) {
50
+            if (in_array($optionArray[0], ['string', 'int']) && in_array($column, ['title', 'firstname', 'lastname', 'name'])) {
51 51
                 $data[] = ucwords($column);
52 52
             }
53 53
         }
@@ -64,8 +64,8 @@  discard block
 block discarded – undo
64 64
                 $data[] = $column;
65 65
             }
66 66
         }
67
-        if($this->getForeignColumns()){
68
-            foreach($this->getForeignColumns() as $relation => $tablename ){
67
+        if ($this->getForeignColumns()) {
68
+            foreach ($this->getForeignColumns() as $relation => $tablename) {
69 69
                 $columnName = array_values($tablename)[0];
70 70
                 $data[] = str_singular($columnName).'_id';
71 71
             }
@@ -204,7 +204,7 @@  discard block
 block discarded – undo
204 204
     {
205 205
         foreach ($this->data as $column => $optionString) {
206 206
             $optionArray = explode('|', $optionString);
207
-            if (in_array($optionArray[0], ['string', 'int'])&&in_array($column, ['title', 'firstname', 'lastname', 'name'])) {
207
+            if (in_array($optionArray[0], ['string', 'int']) && in_array($column, ['title', 'firstname', 'lastname', 'name'])) {
208 208
                 return $column;
209 209
             }
210 210
         }
Please login to merge, or discard this patch.
src/Models/DataOption.php 1 patch
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -79,10 +79,10 @@  discard block
 block discarded – undo
79 79
         $this->column = $columnName;
80 80
         $this->size = false;
81 81
         // dump($optionString);
82
-        if(is_array($optionString) ){
82
+        if (is_array($optionString)) {
83 83
             $this->dataType = 'multiple';
84 84
             $this->multipleOptions = [];
85
-            foreach($optionString as $col => $multString){
85
+            foreach ($optionString as $col => $multString) {
86 86
                 $this->multipleOptions[] = new Self($col, $multString);
87 87
             }
88 88
             // dd($this->multipleOptions[0]);
@@ -90,12 +90,12 @@  discard block
 block discarded – undo
90 90
             // dd($column);
91 91
             // $option = ;
92 92
 
93
-        }else{
93
+        } else {
94 94
             $this->optionArray = explode('|', $optionString);
95 95
             $typePieces = array_shift($this->optionArray);
96 96
             $type = explode(':', $typePieces);
97 97
             $this->dataType = is_array($type) ? $type[0] : $type;
98
-            $this->typeOption = is_array($type)&&count($type)>=2 ? $type[1] : false;
98
+            $this->typeOption = is_array($type) && count($type) >= 2 ? $type[1] : false;
99 99
 
100 100
             foreach ($this->optionArray as $option) {
101 101
                 if ($option == self::COLUMN_UNIQUE) {
@@ -106,7 +106,7 @@  discard block
 block discarded – undo
106 106
                     $this->setRequired();
107 107
                     continue;
108 108
                 }
109
-                if(Str::contains($option, ':')){
109
+                if (Str::contains($option, ':')) {
110 110
                     $optionPieces = explode(':', $option);
111 111
                     $this->setOptions($optionPieces[0], $optionPieces[1]);
112 112
                 }
@@ -118,9 +118,9 @@  discard block
 block discarded – undo
118 118
 
119 119
     public function getSchema()
120 120
     {
121
-        if ($this->dataType=='parent') {
121
+        if ($this->dataType == 'parent') {
122 122
             $schema = $this->processParent();
123
-        } else if( in_array($this->dataType, ['gallery', 'related', 'multiple']) ){
123
+        } else if (in_array($this->dataType, ['gallery', 'related', 'multiple'])) {
124 124
             $schema = '';
125 125
         } else {
126 126
             $schema = '$table->'.$this->getColumnType()."('{$this->column}'";
@@ -142,8 +142,8 @@  discard block
 block discarded – undo
142 142
 
143 143
     public function getType() {
144 144
         $type = $this->dataType;
145
-        if($type=='string'){
146
-            $type = (!$this->getSize() || $this->getSize()<=128) ? $type : 'text';
145
+        if ($type == 'string') {
146
+            $type = (!$this->getSize() || $this->getSize() <= 128) ? $type : 'text';
147 147
         } 
148 148
         
149 149
         return $type;
@@ -167,17 +167,17 @@  discard block
 block discarded – undo
167 167
 
168 168
     public function getFormOptions() {
169 169
         $options = "";
170
-        $options .= $this->isRequired() ? 'required="required" ' :''; 
171
-        $options .= $this->getType()=='text' ? 'rows="'.$this->getTextRows().'" ' :''; 
170
+        $options .= $this->isRequired() ? 'required="required" ' : ''; 
171
+        $options .= $this->getType() == 'text' ? 'rows="'.$this->getTextRows().'" ' : ''; 
172 172
         return $options;
173 173
     }
174 174
 
175 175
 
176 176
     public function getTextRows() {
177
-        if(!$this->size)
177
+        if (!$this->size)
178 178
             return 4;
179 179
         
180
-        return floor($this->getsize()/120);
180
+        return floor($this->getsize() / 120);
181 181
     }
182 182
 
183 183
     public function getTabs($number)
@@ -221,7 +221,7 @@  discard block
 block discarded – undo
221 221
         $this->size = $size;
222 222
     }
223 223
 
224
-    public function optionArray(){
224
+    public function optionArray() {
225 225
         return $this->optionArray;
226 226
     }
227 227
 
Please login to merge, or discard this patch.