@@ -37,7 +37,7 @@ discard block |
||
37 | 37 | * @param $file |
38 | 38 | * @param $table |
39 | 39 | */ |
40 | - public function __construct($config,$file,$table) |
|
40 | + public function __construct($config, $file, $table) |
|
41 | 41 | { |
42 | 42 | $this->config = $config; |
43 | 43 | $this->file = $file; |
@@ -52,7 +52,7 @@ discard block |
||
52 | 52 | */ |
53 | 53 | public function alter(callable $callback) |
54 | 54 | { |
55 | - return $this->callbackWizardInstance(__FUNCTION__,$callback); |
|
55 | + return $this->callbackWizardInstance(__FUNCTION__, $callback); |
|
56 | 56 | } |
57 | 57 | |
58 | 58 | /** |
@@ -61,7 +61,7 @@ discard block |
||
61 | 61 | */ |
62 | 62 | public function create(callable $callback) |
63 | 63 | { |
64 | - return $this->callbackWizardInstance(__FUNCTION__,$callback); |
|
64 | + return $this->callbackWizardInstance(__FUNCTION__, $callback); |
|
65 | 65 | } |
66 | 66 | |
67 | 67 | /** |
@@ -70,7 +70,7 @@ discard block |
||
70 | 70 | private function checkErrors($wizard) |
71 | 71 | { |
72 | 72 | $alterType = $wizard->getAlterType(); |
73 | - if(count($wizard->getNames())!==count($wizard->getTypes()) && (isset($alterType['group'])) && $alterType['group']!=='dropColumn'){ |
|
73 | + if (count($wizard->getNames())!==count($wizard->getTypes()) && (isset($alterType['group'])) && $alterType['group']!=='dropColumn') { |
|
74 | 74 | $wizard->setError('name and types are not equal'); |
75 | 75 | } |
76 | 76 | } |
@@ -106,11 +106,11 @@ discard block |
||
106 | 106 | * @param $method |
107 | 107 | * @return string |
108 | 108 | */ |
109 | - private function callbackWizardInstance($method,callable $callback) |
|
109 | + private function callbackWizardInstance($method, callable $callback) |
|
110 | 110 | { |
111 | 111 | $wizardInstance = $this->getWizardInstance($method); |
112 | 112 | |
113 | - $callbackReturn = call_user_func_array($callback,[$wizardInstance]); |
|
113 | + $callbackReturn = call_user_func_array($callback, [$wizardInstance]); |
|
114 | 114 | |
115 | 115 | $this->checkErrors($wizardInstance); |
116 | 116 |
@@ -94,8 +94,7 @@ discard block |
||
94 | 94 | |
95 | 95 | if(current($syntaxList)!==$changeAbleField){ |
96 | 96 | $alterSytanx = 'ALTER TABLE '.$this->table.' change '.$changeAbleField.' '.current($syntaxList).' '.implode(' ',array_splice($syntaxList,1)).' '.$placeList; |
97 | - } |
|
98 | - else{ |
|
97 | + } else{ |
|
99 | 98 | $alterSytanx = 'ALTER TABLE '.$this->table.' modify '.$syntax.' '.$placeList; |
100 | 99 | } |
101 | 100 | |
@@ -167,8 +166,7 @@ discard block |
||
167 | 166 | //get table collation |
168 | 167 | if(isset($this->data['tableCollation']['table'])){ |
169 | 168 | $this->syntax[]=' DEFAULT CHARACTER SET '.$this->data['tableCollation']['table']; |
170 | - } |
|
171 | - else{ |
|
169 | + } else{ |
|
172 | 170 | $this->syntax[]=' DEFAULT CHARACTER SET utf8'; |
173 | 171 | } |
174 | 172 | |
@@ -176,8 +174,7 @@ discard block |
||
176 | 174 | if($this->data['engine']!==null) |
177 | 175 | { |
178 | 176 | $this->syntax[]=' ENGINE='.$this->data['engine'].' '; |
179 | - } |
|
180 | - else{ |
|
177 | + } else{ |
|
181 | 178 | $this->syntax[]=' ENGINE=InnoDB '; |
182 | 179 | } |
183 | 180 | |
@@ -185,8 +182,7 @@ discard block |
||
185 | 182 | |
186 | 183 | if(in_array($this->table,$existTables)){ |
187 | 184 | return false; |
188 | - } |
|
189 | - else{ |
|
185 | + } else{ |
|
190 | 186 | $query=$this->schema->getConnection()->setQueryBasic($syntax); |
191 | 187 | |
192 | 188 | return [ |
@@ -211,8 +207,7 @@ discard block |
||
211 | 207 | |
212 | 208 | if($group=='create'){ |
213 | 209 | $this->syntax[]=','.implode(',',$this->data['uniqueValueList']); |
214 | - } |
|
215 | - else{ |
|
210 | + } else{ |
|
216 | 211 | $this->alterExtras[]='ADD '.implode(',',$this->data['uniqueValueList']); |
217 | 212 | } |
218 | 213 | |
@@ -223,8 +218,7 @@ discard block |
||
223 | 218 | |
224 | 219 | if($group=='create'){ |
225 | 220 | $this->syntax[]=','.implode(',',$this->data['indexValueList']); |
226 | - } |
|
227 | - else{ |
|
221 | + } else{ |
|
228 | 222 | $this->alterExtras[]='ADD '.implode(',',$this->data['indexValueList']); |
229 | 223 | } |
230 | 224 |
@@ -32,25 +32,25 @@ discard block |
||
32 | 32 | */ |
33 | 33 | private function addColumn($alterType) |
34 | 34 | { |
35 | - if(isset($alterType['place'])){ |
|
35 | + if (isset($alterType['place'])) { |
|
36 | 36 | |
37 | 37 | |
38 | - foreach ($alterType['place'] as $placeKey=>$placeValue){ |
|
39 | - $placeList=$placeKey .' '.$placeValue.''; |
|
38 | + foreach ($alterType['place'] as $placeKey=>$placeValue) { |
|
39 | + $placeList = $placeKey.' '.$placeValue.''; |
|
40 | 40 | } |
41 | 41 | |
42 | - $syntax = implode("",$this->syntax); |
|
42 | + $syntax = implode("", $this->syntax); |
|
43 | 43 | |
44 | 44 | $alterSytanx = 'ALTER TABLE '.$this->table.' ADD COLUMN '.$syntax.' '.$placeList; |
45 | 45 | |
46 | - $query=$this->schema->getConnection()->setQueryBasic($alterSytanx); |
|
46 | + $query = $this->schema->getConnection()->setQueryBasic($alterSytanx); |
|
47 | 47 | |
48 | - if(count($this->alterExtras)){ |
|
49 | - foreach($this->alterExtras as $extra){ |
|
48 | + if (count($this->alterExtras)) { |
|
49 | + foreach ($this->alterExtras as $extra) { |
|
50 | 50 | |
51 | 51 | $extraSyntax = 'ALTER TABLE '.$this->table.' '.$extra.''; |
52 | 52 | |
53 | - $query=$this->schema->getConnection()->setQueryBasic($extraSyntax); |
|
53 | + $query = $this->schema->getConnection()->setQueryBasic($extraSyntax); |
|
54 | 54 | } |
55 | 55 | } |
56 | 56 | |
@@ -74,40 +74,40 @@ discard block |
||
74 | 74 | */ |
75 | 75 | private function change($alterType) |
76 | 76 | { |
77 | - if(isset($alterType['place'])){ |
|
77 | + if (isset($alterType['place'])) { |
|
78 | 78 | |
79 | - foreach ($alterType['place'] as $placeKey=>$placeValue){ |
|
80 | - $placeList=$placeKey .' '.$placeValue.''; |
|
79 | + foreach ($alterType['place'] as $placeKey=>$placeValue) { |
|
80 | + $placeList = $placeKey.' '.$placeValue.''; |
|
81 | 81 | } |
82 | 82 | |
83 | - $syntax = implode("",$this->syntax); |
|
83 | + $syntax = implode("", $this->syntax); |
|
84 | 84 | |
85 | 85 | $columns = $this->schema->getConnection()->showColumnsFrom($this->table); |
86 | 86 | |
87 | - foreach ($columns as $columnKey=>$columnData){ |
|
88 | - if($columnData['Field']==$placeValue){ |
|
87 | + foreach ($columns as $columnKey=>$columnData) { |
|
88 | + if ($columnData['Field']==$placeValue) { |
|
89 | 89 | $changeAbleField = $columns[$columnKey+1]['Field']; |
90 | 90 | } |
91 | 91 | } |
92 | 92 | |
93 | - $syntaxList = explode(' ',$syntax); |
|
93 | + $syntaxList = explode(' ', $syntax); |
|
94 | 94 | |
95 | - if(current($syntaxList)!==$changeAbleField){ |
|
96 | - $alterSytanx = 'ALTER TABLE '.$this->table.' change '.$changeAbleField.' '.current($syntaxList).' '.implode(' ',array_splice($syntaxList,1)).' '.$placeList; |
|
95 | + if (current($syntaxList)!==$changeAbleField) { |
|
96 | + $alterSytanx = 'ALTER TABLE '.$this->table.' change '.$changeAbleField.' '.current($syntaxList).' '.implode(' ', array_splice($syntaxList, 1)).' '.$placeList; |
|
97 | 97 | } |
98 | - else{ |
|
98 | + else { |
|
99 | 99 | $alterSytanx = 'ALTER TABLE '.$this->table.' modify '.$syntax.' '.$placeList; |
100 | 100 | } |
101 | 101 | |
102 | 102 | |
103 | - $query=$this->schema->getConnection()->setQueryBasic($alterSytanx); |
|
103 | + $query = $this->schema->getConnection()->setQueryBasic($alterSytanx); |
|
104 | 104 | |
105 | - if(count($this->alterExtras)){ |
|
106 | - foreach($this->alterExtras as $extra){ |
|
105 | + if (count($this->alterExtras)) { |
|
106 | + foreach ($this->alterExtras as $extra) { |
|
107 | 107 | |
108 | 108 | $extraSyntax = 'ALTER TABLE '.$this->table.' '.$extra.''; |
109 | 109 | |
110 | - $query=$this->schema->getConnection()->setQueryBasic($extraSyntax); |
|
110 | + $query = $this->schema->getConnection()->setQueryBasic($extraSyntax); |
|
111 | 111 | } |
112 | 112 | } |
113 | 113 | |
@@ -129,17 +129,17 @@ discard block |
||
129 | 129 | */ |
130 | 130 | private function addIndex($alterType) |
131 | 131 | { |
132 | - if(isset($this->syntax[0])){ |
|
132 | + if (isset($this->syntax[0])) { |
|
133 | 133 | |
134 | 134 | $index = $this->syntax[0]; |
135 | 135 | |
136 | - foreach($index as $name=>$item){ |
|
136 | + foreach ($index as $name=>$item) { |
|
137 | 137 | $index_name = $name; |
138 | - $indexes = implode(',',$item); |
|
138 | + $indexes = implode(',', $item); |
|
139 | 139 | } |
140 | 140 | $alterSytanx = 'create index '.$index_name.' on '.$this->table.' ('.$indexes.')'; |
141 | 141 | |
142 | - $query=$this->schema->getConnection()->setQueryBasic($alterSytanx); |
|
142 | + $query = $this->schema->getConnection()->setQueryBasic($alterSytanx); |
|
143 | 143 | |
144 | 144 | return [ |
145 | 145 | 'syntax'=>$this->syntax, |
@@ -160,17 +160,17 @@ discard block |
||
160 | 160 | */ |
161 | 161 | private function addUnique($alterType) |
162 | 162 | { |
163 | - if(isset($this->syntax[0])){ |
|
163 | + if (isset($this->syntax[0])) { |
|
164 | 164 | |
165 | 165 | $unique = $this->syntax[0]; |
166 | 166 | |
167 | - foreach($unique as $name=>$item){ |
|
167 | + foreach ($unique as $name=>$item) { |
|
168 | 168 | $unique_name = $name; |
169 | - $uniques = implode(',',$item); |
|
169 | + $uniques = implode(',', $item); |
|
170 | 170 | } |
171 | 171 | $alterSytanx = 'ALTER TABLE '.$this->table.' ADD CONSTRAINT '.$unique_name.' UNIQUE ('.$uniques.')'; |
172 | 172 | |
173 | - $query=$this->schema->getConnection()->setQueryBasic($alterSytanx); |
|
173 | + $query = $this->schema->getConnection()->setQueryBasic($alterSytanx); |
|
174 | 174 | |
175 | 175 | return [ |
176 | 176 | 'syntax'=>$this->syntax, |
@@ -191,13 +191,13 @@ discard block |
||
191 | 191 | */ |
192 | 192 | private function dropColumn($alterType) |
193 | 193 | { |
194 | - if(isset($this->syntax[0])){ |
|
194 | + if (isset($this->syntax[0])) { |
|
195 | 195 | |
196 | 196 | $column = rtrim($this->syntax[0]); |
197 | 197 | |
198 | 198 | $alterSytanx = 'alter table '.$this->table.' drop column '.$column; |
199 | 199 | |
200 | - $query=$this->schema->getConnection()->setQueryBasic($alterSytanx); |
|
200 | + $query = $this->schema->getConnection()->setQueryBasic($alterSytanx); |
|
201 | 201 | |
202 | 202 | return [ |
203 | 203 | 'syntax'=>$this->syntax, |
@@ -218,15 +218,15 @@ discard block |
||
218 | 218 | */ |
219 | 219 | private function dropKey($alterType) |
220 | 220 | { |
221 | - if(isset($this->syntax[0])){ |
|
221 | + if (isset($this->syntax[0])) { |
|
222 | 222 | |
223 | 223 | $dropKey = $this->syntax[0]; |
224 | 224 | |
225 | - foreach ($dropKey as $dropType=>$dropName){ |
|
225 | + foreach ($dropKey as $dropType=>$dropName) { |
|
226 | 226 | |
227 | 227 | $alterSytanx = 'alter table '.$this->table.' drop '.$dropType.' '.$dropName; |
228 | 228 | |
229 | - $query=$this->schema->getConnection()->setQueryBasic($alterSytanx); |
|
229 | + $query = $this->schema->getConnection()->setQueryBasic($alterSytanx); |
|
230 | 230 | |
231 | 231 | return [ |
232 | 232 | 'syntax'=>$this->syntax, |
@@ -256,32 +256,32 @@ discard block |
||
256 | 256 | |
257 | 257 | $this->getDefaultSyntaxGroup(); |
258 | 258 | |
259 | - $this->syntax[]=')'; |
|
259 | + $this->syntax[] = ')'; |
|
260 | 260 | |
261 | 261 | //get table collation |
262 | - if(isset($this->data['tableCollation']['table'])){ |
|
263 | - $this->syntax[]=' DEFAULT CHARACTER SET '.$this->data['tableCollation']['table']; |
|
262 | + if (isset($this->data['tableCollation']['table'])) { |
|
263 | + $this->syntax[] = ' DEFAULT CHARACTER SET '.$this->data['tableCollation']['table']; |
|
264 | 264 | } |
265 | - else{ |
|
266 | - $this->syntax[]=' DEFAULT CHARACTER SET utf8'; |
|
265 | + else { |
|
266 | + $this->syntax[] = ' DEFAULT CHARACTER SET utf8'; |
|
267 | 267 | } |
268 | 268 | |
269 | 269 | //get engine |
270 | - if($this->data['engine']!==null) |
|
270 | + if ($this->data['engine']!==null) |
|
271 | 271 | { |
272 | - $this->syntax[]=' ENGINE='.$this->data['engine'].' '; |
|
272 | + $this->syntax[] = ' ENGINE='.$this->data['engine'].' '; |
|
273 | 273 | } |
274 | - else{ |
|
275 | - $this->syntax[]=' ENGINE=InnoDB '; |
|
274 | + else { |
|
275 | + $this->syntax[] = ' ENGINE=InnoDB '; |
|
276 | 276 | } |
277 | 277 | |
278 | - $syntax = implode("",$this->syntax); |
|
278 | + $syntax = implode("", $this->syntax); |
|
279 | 279 | |
280 | - if(in_array($this->table,$existTables)){ |
|
280 | + if (in_array($this->table, $existTables)) { |
|
281 | 281 | return false; |
282 | 282 | } |
283 | - else{ |
|
284 | - $query=$this->schema->getConnection()->setQueryBasic($syntax); |
|
283 | + else { |
|
284 | + $query = $this->schema->getConnection()->setQueryBasic($syntax); |
|
285 | 285 | |
286 | 286 | return [ |
287 | 287 | 'syntax'=>$syntax, |
@@ -296,52 +296,52 @@ discard block |
||
296 | 296 | /** |
297 | 297 | * @param null $group |
298 | 298 | */ |
299 | - private function getDefaultSyntaxGroup($group=null) |
|
299 | + private function getDefaultSyntaxGroup($group = null) |
|
300 | 300 | { |
301 | - $this->syntax[] = implode(",",$this->getCreateDefaultList()); |
|
301 | + $this->syntax[] = implode(",", $this->getCreateDefaultList()); |
|
302 | 302 | |
303 | 303 | //get unique values |
304 | - if(isset($this->data['uniqueValueList']) && count($this->data['uniqueValueList'])){ |
|
304 | + if (isset($this->data['uniqueValueList']) && count($this->data['uniqueValueList'])) { |
|
305 | 305 | |
306 | - if($group=='create'){ |
|
307 | - $this->syntax[]=','.implode(',',$this->data['uniqueValueList']); |
|
306 | + if ($group=='create') { |
|
307 | + $this->syntax[] = ','.implode(',', $this->data['uniqueValueList']); |
|
308 | 308 | } |
309 | - else{ |
|
310 | - $this->alterExtras[]='ADD '.implode(',',$this->data['uniqueValueList']); |
|
309 | + else { |
|
310 | + $this->alterExtras[] = 'ADD '.implode(',', $this->data['uniqueValueList']); |
|
311 | 311 | } |
312 | 312 | |
313 | 313 | } |
314 | 314 | |
315 | 315 | //get index values |
316 | - if(isset($this->data['indexValueList']) && count($this->data['indexValueList'])){ |
|
316 | + if (isset($this->data['indexValueList']) && count($this->data['indexValueList'])) { |
|
317 | 317 | |
318 | - if($group=='create'){ |
|
319 | - $this->syntax[]=','.implode(',',$this->data['indexValueList']); |
|
318 | + if ($group=='create') { |
|
319 | + $this->syntax[] = ','.implode(',', $this->data['indexValueList']); |
|
320 | 320 | } |
321 | - else{ |
|
322 | - $this->alterExtras[]='ADD '.implode(',',$this->data['indexValueList']); |
|
321 | + else { |
|
322 | + $this->alterExtras[] = 'ADD '.implode(',', $this->data['indexValueList']); |
|
323 | 323 | } |
324 | 324 | |
325 | 325 | } |
326 | 326 | |
327 | 327 | //get index values for key |
328 | - if(count($this->getKeyList())){ |
|
329 | - $this->syntax[]=','.implode(',',$this->getKeyList()); |
|
328 | + if (count($this->getKeyList())) { |
|
329 | + $this->syntax[] = ','.implode(',', $this->getKeyList()); |
|
330 | 330 | } |
331 | 331 | |
332 | - if(count($this->data['references'])){ |
|
333 | - $this->syntax[]=$this->getReferenceSyntax($this->data['references']); |
|
332 | + if (count($this->data['references'])) { |
|
333 | + $this->syntax[] = $this->getReferenceSyntax($this->data['references']); |
|
334 | 334 | } |
335 | 335 | |
336 | - if(isset($this->syntax[0]) && $this->syntax[0]=='' && $group=='addIndex'){ |
|
336 | + if (isset($this->syntax[0]) && $this->syntax[0]=='' && $group=='addIndex') { |
|
337 | 337 | $this->syntax[0] = $this->data['index']; |
338 | 338 | } |
339 | 339 | |
340 | - if(isset($this->syntax[0]) && $this->syntax[0]=='' && $group=='addUnique'){ |
|
340 | + if (isset($this->syntax[0]) && $this->syntax[0]=='' && $group=='addUnique') { |
|
341 | 341 | $this->syntax[0] = $this->data['unique']; |
342 | 342 | } |
343 | 343 | |
344 | - if(isset($this->syntax[0]) && $this->syntax[0]=='' && $group=='dropKey'){ |
|
344 | + if (isset($this->syntax[0]) && $this->syntax[0]=='' && $group=='dropKey') { |
|
345 | 345 | $this->syntax[0] = $this->data['key']; |
346 | 346 | } |
347 | 347 | } |
@@ -5,7 +5,7 @@ discard block |
||
5 | 5 | use Migratio\Contract\WizardContract; |
6 | 6 | use Migratio\Contract\WizardAlterContract; |
7 | 7 | |
8 | -class WizardAlter extends Wizard implements WizardContract,WizardAlterContract |
|
8 | +class WizardAlter extends Wizard implements WizardContract, WizardAlterContract |
|
9 | 9 | { |
10 | 10 | /** |
11 | 11 | * @var array |
@@ -32,7 +32,7 @@ discard block |
||
32 | 32 | */ |
33 | 33 | public function after($field) |
34 | 34 | { |
35 | - $this->wizard->setAlterType('place',['AFTER'=>$field]); |
|
35 | + $this->wizard->setAlterType('place', ['AFTER'=>$field]); |
|
36 | 36 | |
37 | 37 | return $this->wizard; |
38 | 38 | } |
@@ -15,7 +15,7 @@ discard block |
||
15 | 15 | /** |
16 | 16 | * @var $type |
17 | 17 | */ |
18 | - public $type='migration'; |
|
18 | + public $type = 'migration'; |
|
19 | 19 | |
20 | 20 | /** |
21 | 21 | * @var array |
@@ -33,8 +33,8 @@ discard block |
||
33 | 33 | /** |
34 | 34 | * @var $commandRule |
35 | 35 | */ |
36 | - public $commandRule=['create'=>[ |
|
37 | - 'name','table' |
|
36 | + public $commandRule = ['create'=>[ |
|
37 | + 'name', 'table' |
|
38 | 38 | ], |
39 | 39 | 'push'=>[]]; |
40 | 40 | |
@@ -63,14 +63,14 @@ discard block |
||
63 | 63 | |
64 | 64 | foreach ($pushResult as $key=>$value) { |
65 | 65 | |
66 | - if(isset($value['success'])){ |
|
66 | + if (isset($value['success'])) { |
|
67 | 67 | |
68 | 68 | $list[] = true; |
69 | 69 | |
70 | - $pushResultFile = explode("/",$pushResult[$key]['file']); |
|
70 | + $pushResultFile = explode("/", $pushResult[$key]['file']); |
|
71 | 71 | $file = end($pushResultFile); |
72 | 72 | |
73 | - if($pushResult[$key]['success']===true){ |
|
73 | + if ($pushResult[$key]['success']===true) { |
|
74 | 74 | |
75 | 75 | $this->table->addRow([ |
76 | 76 | $key, |
@@ -82,7 +82,7 @@ discard block |
||
82 | 82 | 'No', |
83 | 83 | ]); |
84 | 84 | } |
85 | - else{ |
|
85 | + else { |
|
86 | 86 | |
87 | 87 | $this->table->addRow([ |
88 | 88 | $key, |
@@ -98,12 +98,12 @@ discard block |
||
98 | 98 | } |
99 | 99 | } |
100 | 100 | |
101 | - if(count($list)){ |
|
102 | - $this->table->setHeaders(['id','table','file','type','status','message','seeder']); |
|
101 | + if (count($list)) { |
|
102 | + $this->table->setHeaders(['id', 'table', 'file', 'type', 'status', 'message', 'seeder']); |
|
103 | 103 | |
104 | 104 | echo $this->table->getTable(); |
105 | 105 | } |
106 | - else{ |
|
106 | + else { |
|
107 | 107 | echo $this->classical('No migration was found to apply'); |
108 | 108 | } |
109 | 109 | |
@@ -117,10 +117,10 @@ discard block |
||
117 | 117 | { |
118 | 118 | $config = $this->getConfig(); |
119 | 119 | |
120 | - if(!isset($this->argument['group'])){ |
|
120 | + if (!isset($this->argument['group'])) { |
|
121 | 121 | $path = $config['paths'][0]; |
122 | 122 | } |
123 | - else{ |
|
123 | + else { |
|
124 | 124 | $path = $config['paths'][strtolower($this->argument['group'])]; |
125 | 125 | } |
126 | 126 | |
@@ -130,19 +130,19 @@ discard block |
||
130 | 130 | |
131 | 131 | $stubType = (!file_exists($tablePath)) ? 'create' : 'alter'; |
132 | 132 | |
133 | - if(!file_exists($path)){ |
|
133 | + if (!file_exists($path)) { |
|
134 | 134 | |
135 | - $this->file->fs->mkdir($path,0777); |
|
136 | - $this->file->fs->chmod($path,0777,000,true); |
|
135 | + $this->file->fs->mkdir($path, 0777); |
|
136 | + $this->file->fs->chmod($path, 0777, 000, true); |
|
137 | 137 | } |
138 | 138 | |
139 | - $migrationCreate = $this->getSchema()->stub($this->argument,$stubType); |
|
139 | + $migrationCreate = $this->getSchema()->stub($this->argument, $stubType); |
|
140 | 140 | |
141 | 141 | echo $this->info('Migration Create Process :'); |
142 | 142 | |
143 | - $this->table->setHeaders(['id','method','table','style','name','type','status','message']); |
|
143 | + $this->table->setHeaders(['id', 'method', 'table', 'style', 'name', 'type', 'status', 'message']); |
|
144 | 144 | |
145 | - foreach ($migrationCreate['directory'] as $key=>$data){ |
|
145 | + foreach ($migrationCreate['directory'] as $key=>$data) { |
|
146 | 146 | |
147 | 147 | $this->table->addRow([ |
148 | 148 | $key, |
@@ -157,7 +157,7 @@ discard block |
||
157 | 157 | ]); |
158 | 158 | } |
159 | 159 | |
160 | - foreach ($migrationCreate['file'] as $key=>$data){ |
|
160 | + foreach ($migrationCreate['file'] as $key=>$data) { |
|
161 | 161 | |
162 | 162 | $this->table->addRow([ |
163 | 163 | $key, |
@@ -188,13 +188,13 @@ discard block |
||
188 | 188 | 'arguments' => $this->argument |
189 | 189 | ]; |
190 | 190 | |
191 | - $paths['paths'] = array_merge($paths['paths'],[StaticPathModel::storeMigrationPath()]); |
|
191 | + $paths['paths'] = array_merge($paths['paths'], [StaticPathModel::storeMigrationPath()]); |
|
192 | 192 | |
193 | 193 | foreach (config('database.migrations') as $key=>$item) { |
194 | - if($key!=='default'){ |
|
194 | + if ($key!=='default') { |
|
195 | 195 | |
196 | 196 | $otherMigrationPath = path()->migration().''.$item; |
197 | - $paths['paths'] = array_merge($paths['paths'],[$key=>$otherMigrationPath]); |
|
197 | + $paths['paths'] = array_merge($paths['paths'], [$key=>$otherMigrationPath]); |
|
198 | 198 | } |
199 | 199 | } |
200 | 200 |
@@ -81,8 +81,7 @@ discard block |
||
81 | 81 | 'Ok', |
82 | 82 | 'No', |
83 | 83 | ]); |
84 | - } |
|
85 | - else{ |
|
84 | + } else{ |
|
86 | 85 | |
87 | 86 | $this->table->addRow([ |
88 | 87 | $key, |
@@ -102,8 +101,7 @@ discard block |
||
102 | 101 | $this->table->setHeaders(['id','table','file','type','status','message','seeder']); |
103 | 102 | |
104 | 103 | echo $this->table->getTable(); |
105 | - } |
|
106 | - else{ |
|
104 | + } else{ |
|
107 | 105 | echo $this->classical('No migration was found to apply'); |
108 | 106 | } |
109 | 107 | |
@@ -119,8 +117,7 @@ discard block |
||
119 | 117 | |
120 | 118 | if(!isset($this->argument['group'])){ |
121 | 119 | $path = $config['paths'][0]; |
122 | - } |
|
123 | - else{ |
|
120 | + } else{ |
|
124 | 121 | $path = $config['paths'][strtolower($this->argument['group'])]; |
125 | 122 | } |
126 | 123 |
@@ -15,25 +15,24 @@ discard block |
||
15 | 15 | { |
16 | 16 | $getCommandList = app()->commandList(); |
17 | 17 | |
18 | - $this->table->setHeaders(['command','project','params','description']); |
|
18 | + $this->table->setHeaders(['command', 'project', 'params', 'description']); |
|
19 | 19 | |
20 | 20 | $app = $this; |
21 | 21 | |
22 | - foreach ($getCommandList as $command=>$runnable){ |
|
22 | + foreach ($getCommandList as $command=>$runnable) { |
|
23 | 23 | |
24 | - $commandInstance = app()->resolve($command,['argument'=>[]]); |
|
24 | + $commandInstance = app()->resolve($command, ['argument'=>[]]); |
|
25 | 25 | |
26 | 26 | $className = class_basename($commandInstance); |
27 | 27 | |
28 | - ClosureDispatcher::bind($commandInstance)->call(function() use($app,$className) |
|
28 | + ClosureDispatcher::bind($commandInstance)->call(function() use($app, $className) |
|
29 | 29 | { |
30 | - if(isset($this->runnableMethods)){ |
|
30 | + if (isset($this->runnableMethods)) { |
|
31 | 31 | |
32 | - foreach ($this->runnableMethods as $method=>$description){ |
|
32 | + foreach ($this->runnableMethods as $method=>$description) { |
|
33 | 33 | |
34 | 34 | $commandRule = (isset($this->commandRule[$method])) ? |
35 | - $app->methodCommandRule($this->commandRule[$method]) : |
|
36 | - $app->methodCommandRule($this->commandRule); |
|
35 | + $app->methodCommandRule($this->commandRule[$method]) : $app->methodCommandRule($this->commandRule); |
|
37 | 36 | |
38 | 37 | $projectStatus = (isset($this->projectStatus)) ? 'YES' : 'NO'; |
39 | 38 | |
@@ -61,18 +60,18 @@ discard block |
||
61 | 60 | public function methodCommandRule($commandRule) |
62 | 61 | { |
63 | 62 | |
64 | - if(is_array($commandRule)){ |
|
63 | + if (is_array($commandRule)) { |
|
65 | 64 | |
66 | 65 | $list = []; |
67 | 66 | |
68 | - foreach ($commandRule as $rule){ |
|
69 | - if(!is_array($rule)){ |
|
67 | + foreach ($commandRule as $rule) { |
|
68 | + if (!is_array($rule)) { |
|
70 | 69 | $list[] = $rule.':['.$rule.']'; |
71 | 70 | } |
72 | 71 | |
73 | 72 | } |
74 | 73 | |
75 | - return implode(" ",$list); |
|
74 | + return implode(" ", $list); |
|
76 | 75 | } |
77 | 76 | |
78 | 77 | return '['.$commandRule.']'; |
@@ -27,13 +27,13 @@ discard block |
||
27 | 27 | { |
28 | 28 | // we check that they are in |
29 | 29 | // the console to run the console commands in the kernel. |
30 | - if(Utils::isNamespaceExists($this->consoleClassNamespace)){ |
|
30 | + if (Utils::isNamespaceExists($this->consoleClassNamespace)) { |
|
31 | 31 | return call_user_func($callback); |
32 | 32 | } |
33 | 33 | |
34 | 34 | // if the kernel console is not found |
35 | 35 | // then we check the existence of the specific application command and run it if it is. |
36 | - return (new CustomConsoleProcess($this->getConsoleArgumentsWithKey(),$this))->handle(); |
|
36 | + return (new CustomConsoleProcess($this->getConsoleArgumentsWithKey(), $this))->handle(); |
|
37 | 37 | |
38 | 38 | } |
39 | 39 | |
@@ -43,25 +43,25 @@ discard block |
||
43 | 43 | * @param array $args |
44 | 44 | * @return void|mixed |
45 | 45 | */ |
46 | - protected function consoleEventHandler($args=array()) |
|
46 | + protected function consoleEventHandler($args = array()) |
|
47 | 47 | { |
48 | - if(isset($this->app['eventDispatcher'])){ |
|
48 | + if (isset($this->app['eventDispatcher'])) { |
|
49 | 49 | |
50 | 50 | $listeners = event()->getListeners(); |
51 | 51 | |
52 | - if(isset($args['event']) && isset($listeners['console'])){ |
|
52 | + if (isset($args['event']) && isset($listeners['console'])) { |
|
53 | 53 | |
54 | - if(strtolower($args['event'])!=='default' && isset($listeners['console'][strtolower($args['event'])])){ |
|
54 | + if (strtolower($args['event'])!=='default' && isset($listeners['console'][strtolower($args['event'])])) { |
|
55 | 55 | |
56 | 56 | $event = $listeners['console'][strtolower($args['event'])]; |
57 | - return call_user_func_array($event,['app'=>$this->app,'args'=>$args,]); |
|
57 | + return call_user_func_array($event, ['app'=>$this->app, 'args'=>$args, ]); |
|
58 | 58 | } |
59 | 59 | } |
60 | 60 | |
61 | - if(isset($listeners['console']['default'])){ |
|
61 | + if (isset($listeners['console']['default'])) { |
|
62 | 62 | |
63 | 63 | $event = $listeners['console']['default']; |
64 | - return call_user_func_array($event,['args'=>$args,'app'=>$this->app]); |
|
64 | + return call_user_func_array($event, ['args'=>$args, 'app'=>$this->app]); |
|
65 | 65 | } |
66 | 66 | } |
67 | 67 | |
@@ -79,9 +79,9 @@ discard block |
||
79 | 79 | |
80 | 80 | //If the console executor is a custom console application; in this case we look at the kernel directory inside the application. |
81 | 81 | //If the console class is not available on the kernel of resta, then the system will run the command class in the application. |
82 | - return $this->checkConsoleNamespace(function(){ |
|
82 | + return $this->checkConsoleNamespace(function() { |
|
83 | 83 | |
84 | - if($this->isRunnableKernelCommandList()){ |
|
84 | + if ($this->isRunnableKernelCommandList()) { |
|
85 | 85 | exception()->badMethodCall('this command is not runnable'); |
86 | 86 | } |
87 | 87 | |
@@ -89,10 +89,10 @@ discard block |
||
89 | 89 | $consoleArguments = $this->getConsoleArgumentsWithKey(); |
90 | 90 | |
91 | 91 | // we get the instance data of the kernel command class of the system. |
92 | - $commander = (new $this->consoleClassNamespace($consoleArguments,$this)); |
|
92 | + $commander = (new $this->consoleClassNamespace($consoleArguments, $this)); |
|
93 | 93 | |
94 | 94 | // we check the command rules of each command class. |
95 | - $this->prepareCommander($commander,function($commander){ |
|
95 | + $this->prepareCommander($commander, function($commander) { |
|
96 | 96 | return $commander->{$this->getConsoleClassMethod()}(); |
97 | 97 | }); |
98 | 98 | |
@@ -110,12 +110,12 @@ discard block |
||
110 | 110 | public function handle() |
111 | 111 | { |
112 | 112 | //get is running console |
113 | - if($this->app->runningInConsole()){ |
|
113 | + if ($this->app->runningInConsole()) { |
|
114 | 114 | |
115 | 115 | error_reporting(E_ERROR | E_WARNING | E_PARSE | E_NOTICE); |
116 | 116 | |
117 | 117 | //run console process |
118 | - if(count($this->getArguments())){ |
|
118 | + if (count($this->getArguments())) { |
|
119 | 119 | return $this->consoleProcess(); |
120 | 120 | } |
121 | 121 | |
@@ -131,24 +131,24 @@ discard block |
||
131 | 131 | * @param callable $callback |
132 | 132 | * @return mixed |
133 | 133 | */ |
134 | - protected function prepareCommander(ConsoleOutputterContracts $commander,callable $callback) |
|
134 | + protected function prepareCommander(ConsoleOutputterContracts $commander, callable $callback) |
|
135 | 135 | { |
136 | 136 | // closure binding custom command,move custom namespace as specific |
137 | 137 | // call prepare commander firstly for checking command builder |
138 | - $closureCommand = app()->resolve(ClosureDispatcher::class,['bind'=>$commander]); |
|
138 | + $closureCommand = app()->resolve(ClosureDispatcher::class, ['bind'=>$commander]); |
|
139 | 139 | |
140 | 140 | //assign commander method name |
141 | 141 | $closureCommand->prepareBind['methodName'] = $this->getConsoleClassMethod(); |
142 | 142 | |
143 | 143 | $prepareCommander = $commander->prepareCommander($closureCommand); |
144 | 144 | |
145 | - if(!$prepareCommander['status']){ |
|
145 | + if (!$prepareCommander['status']) { |
|
146 | 146 | echo $commander->exception($prepareCommander); |
147 | 147 | die(); |
148 | 148 | } |
149 | 149 | |
150 | 150 | //callback custom console |
151 | - return call_user_func_array($callback,[$commander]); |
|
151 | + return call_user_func_array($callback, [$commander]); |
|
152 | 152 | } |
153 | 153 | |
154 | 154 | /** |
@@ -161,8 +161,8 @@ discard block |
||
161 | 161 | $commandList = $this->app->commandList(); |
162 | 162 | |
163 | 163 | //is runnable kernel command conditions |
164 | - return !array_key_exists($this->consoleClassNamespace,$commandList) OR |
|
165 | - (array_key_exists($this->consoleClassNamespace,$commandList) AND |
|
164 | + return !array_key_exists($this->consoleClassNamespace, $commandList) OR |
|
165 | + (array_key_exists($this->consoleClassNamespace, $commandList) AND |
|
166 | 166 | !$commandList[$this->consoleClassNamespace]['isRunnable']); |
167 | 167 | } |
168 | 168 | } |
169 | 169 | \ No newline at end of file |
@@ -14,7 +14,7 @@ discard block |
||
14 | 14 | */ |
15 | 15 | public function get() |
16 | 16 | { |
17 | - if(!isset($this->config['paths'][0])){ |
|
17 | + if (!isset($this->config['paths'][0])) { |
|
18 | 18 | exit(); |
19 | 19 | } |
20 | 20 | |
@@ -27,11 +27,11 @@ discard block |
||
27 | 27 | |
28 | 28 | $list = []; |
29 | 29 | |
30 | - foreach ($migrations as $table=>$item){ |
|
30 | + foreach ($migrations as $table=>$item) { |
|
31 | 31 | $list[] = strtolower($table); |
32 | 32 | } |
33 | 33 | |
34 | - if(isset($arguments['only'])){ |
|
34 | + if (isset($arguments['only'])) { |
|
35 | 35 | $dbtables = $this->getOnly($dbtables); |
36 | 36 | } |
37 | 37 | |
@@ -40,7 +40,7 @@ discard block |
||
40 | 40 | echo 'Toplam : '.count($dbtables).' Table'; |
41 | 41 | echo PHP_EOL; |
42 | 42 | |
43 | - foreach ($dbtables as $dbtablekey=>$dbtable){ |
|
43 | + foreach ($dbtables as $dbtablekey=>$dbtable) { |
|
44 | 44 | |
45 | 45 | $dbtablekey = $dbtablekey+1; |
46 | 46 | |
@@ -49,45 +49,45 @@ discard block |
||
49 | 49 | $dbtable = ucfirst($dbtable); |
50 | 50 | $makeDirectory = $directory.''.DIRECTORY_SEPARATOR.''.$dbtable; |
51 | 51 | |
52 | - if(!file_exists($makeDirectory)){ |
|
53 | - files()->makeDirectory($makeDirectory,0755,true); |
|
54 | - $exist=false; |
|
52 | + if (!file_exists($makeDirectory)) { |
|
53 | + files()->makeDirectory($makeDirectory, 0755, true); |
|
54 | + $exist = false; |
|
55 | 55 | } |
56 | - else{ |
|
57 | - $exist=true; |
|
56 | + else { |
|
57 | + $exist = true; |
|
58 | 58 | } |
59 | 59 | |
60 | 60 | $migrationName = time().'_'.$dbtable.''; |
61 | 61 | |
62 | - if($exist===false){ |
|
62 | + if ($exist===false) { |
|
63 | 63 | |
64 | - $content = $this->getContentFile($this->getStubPath().''.DIRECTORY_SEPARATOR.'pullCreate.stub',[ |
|
64 | + $content = $this->getContentFile($this->getStubPath().''.DIRECTORY_SEPARATOR.'pullCreate.stub', [ |
|
65 | 65 | 'className' => $dbtable, |
66 | 66 | 'informations' => $informations |
67 | 67 | ]); |
68 | 68 | |
69 | - $contentResult = files()->put($makeDirectory.''.DIRECTORY_SEPARATOR.''.$migrationName.'.php',$content); |
|
69 | + $contentResult = files()->put($makeDirectory.''.DIRECTORY_SEPARATOR.''.$migrationName.'.php', $content); |
|
70 | 70 | } |
71 | 71 | |
72 | 72 | |
73 | 73 | |
74 | - if(isset($contentResult) && $contentResult!==false){ |
|
74 | + if (isset($contentResult) && $contentResult!==false) { |
|
75 | 75 | |
76 | 76 | $this->schema->getConnection()->generateEntity($dbtable); |
77 | 77 | |
78 | - if(substr($dbtable,-1)=='s'){ |
|
79 | - app()->command('model create','model:'.strtolower(substr($dbtable,0,-1)).' table:'.$dbtable.' entity:'.$dbtable); |
|
78 | + if (substr($dbtable, -1)=='s') { |
|
79 | + app()->command('model create', 'model:'.strtolower(substr($dbtable, 0, -1)).' table:'.$dbtable.' entity:'.$dbtable); |
|
80 | 80 | } |
81 | - else{ |
|
82 | - app()->command('model create','model:'.strtolower($dbtable).' table:'.$dbtable.' entity:'.$dbtable); |
|
81 | + else { |
|
82 | + app()->command('model create', 'model:'.strtolower($dbtable).' table:'.$dbtable.' entity:'.$dbtable); |
|
83 | 83 | } |
84 | 84 | |
85 | 85 | echo $dbtablekey.'- '.$migrationName.' ---> Ok'; |
86 | 86 | } |
87 | - elseif($exist){ |
|
87 | + elseif ($exist) { |
|
88 | 88 | echo $dbtablekey.'- '.$migrationName.' ---> (Already Exist)'; |
89 | 89 | } |
90 | - else{ |
|
90 | + else { |
|
91 | 91 | echo $dbtablekey.'- '.$migrationName.' ---> Fail'; |
92 | 92 | } |
93 | 93 | |
@@ -115,46 +115,46 @@ discard block |
||
115 | 115 | |
116 | 116 | $list = []; |
117 | 117 | |
118 | - foreach ($columns as $key=>$data){ |
|
118 | + foreach ($columns as $key=>$data) { |
|
119 | 119 | |
120 | - $data['Type'] = rtrim(str_replace('unsigned','',$data['Type'])); |
|
120 | + $data['Type'] = rtrim(str_replace('unsigned', '', $data['Type'])); |
|
121 | 121 | |
122 | 122 | $field = $data['Field']; |
123 | 123 | $list[] = '$wizard->name(\''.$field.'\')'; |
124 | 124 | $list[] = '->'.$this->getColumnTransformers($data['Type']).''; |
125 | 125 | |
126 | 126 | //default block |
127 | - if(!is_null($data['Default'])){ |
|
127 | + if (!is_null($data['Default'])) { |
|
128 | 128 | $default = $data['Default']; |
129 | - $list[] = '->default(\''.$default.'\')'; |
|
129 | + $list[] = '->default(\''.$default.'\')'; |
|
130 | 130 | } |
131 | 131 | |
132 | - $getIndex = $this->getIndexInformation($indexes,$data['Field']); |
|
132 | + $getIndex = $this->getIndexInformation($indexes, $data['Field']); |
|
133 | 133 | |
134 | 134 | //unique block |
135 | - if($getIndex['Non_unique']=='0' && $getIndex['Key_name']!=='PRIMARY'){ |
|
135 | + if ($getIndex['Non_unique']=='0' && $getIndex['Key_name']!=='PRIMARY') { |
|
136 | 136 | $indexName = $getIndex['Key_name']; |
137 | - $list[] = '->unique(\''.$indexName.'\')'; |
|
137 | + $list[] = '->unique(\''.$indexName.'\')'; |
|
138 | 138 | } |
139 | 139 | |
140 | 140 | //index block |
141 | - if($getIndex['Non_unique']=='1' && $getIndex['Key_name']!=='PRIMARY'){ |
|
141 | + if ($getIndex['Non_unique']=='1' && $getIndex['Key_name']!=='PRIMARY') { |
|
142 | 142 | $columnName = $getIndex['Column_name']; |
143 | 143 | $indexName = $getIndex['Key_name']; |
144 | 144 | |
145 | - if(count($multipleIndexes[$indexName])==1){ |
|
145 | + if (count($multipleIndexes[$indexName])==1) { |
|
146 | 146 | $list[] = '->index(\''.$indexName.'\')'; |
147 | 147 | } |
148 | 148 | } |
149 | 149 | |
150 | 150 | //comment block |
151 | - if(strlen($data['Comment'])>0){ |
|
151 | + if (strlen($data['Comment'])>0) { |
|
152 | 152 | $comment = $data['Comment']; |
153 | 153 | $list[] = '->comment(\''.$comment.'\')'; |
154 | 154 | } |
155 | 155 | |
156 | 156 | //auto increment block |
157 | - if($data['Extra']=='auto_increment'){ |
|
157 | + if ($data['Extra']=='auto_increment') { |
|
158 | 158 | $list[] = '->auto_increment()'; |
159 | 159 | } |
160 | 160 | |
@@ -169,39 +169,39 @@ discard block |
||
169 | 169 | |
170 | 170 | //table indexes |
171 | 171 | foreach ($multipleIndexes as $indexName=>$values) { |
172 | - if(count($values)>1){ |
|
173 | - $values = '\''.implode('\',\'',$values).'\''; |
|
172 | + if (count($values)>1) { |
|
173 | + $values = '\''.implode('\',\'', $values).'\''; |
|
174 | 174 | $list[] = ' $wizard->table()->indexes(\''.$indexName.'\',['.$values.']); |
175 | 175 | '; |
176 | 176 | } |
177 | 177 | } |
178 | 178 | |
179 | - if(count($foreignKeys)){ |
|
179 | + if (count($foreignKeys)) { |
|
180 | 180 | |
181 | 181 | $constraintName = $foreignKeys['CONSTRAINT_NAME']; |
182 | 182 | $key = $foreignKeys['COLUMN_NAME']; |
183 | 183 | $referenceTable = $foreignKeys['REFERENCED_TABLE_NAME']; |
184 | 184 | $referenceColumn = $foreignKeys['REFERENCED_COLUMN_NAME']; |
185 | 185 | |
186 | - if($foreignKeys['UPDATE_RULE']=='RESTRICT' && $foreignKeys['DELETE_RULE']=='RESTRICT'){ |
|
186 | + if ($foreignKeys['UPDATE_RULE']=='RESTRICT' && $foreignKeys['DELETE_RULE']=='RESTRICT') { |
|
187 | 187 | $list[] = ' $wizard->table()->foreign()->constraint(\''.$constraintName.'\')->key(\''.$key.'\')->references(\''.$referenceTable.'\',\''.$referenceColumn.'\'); |
188 | 188 | '; |
189 | 189 | } |
190 | 190 | |
191 | - if($foreignKeys['UPDATE_RULE']!=='RESTRICT' && $foreignKeys['DELETE_RULE']=='RESTRICT'){ |
|
191 | + if ($foreignKeys['UPDATE_RULE']!=='RESTRICT' && $foreignKeys['DELETE_RULE']=='RESTRICT') { |
|
192 | 192 | $rule = $foreignKeys['UPDATE_RULE']; |
193 | 193 | $list[] = ' $wizard->table()->foreign()->constraint(\''.$constraintName.'\')->key(\''.$key.'\')->references(\''.$referenceTable.'\',\''.$referenceColumn.'\')->onUpdate()->'.strtolower($rule).'(); |
194 | 194 | '; |
195 | 195 | } |
196 | 196 | |
197 | - if($foreignKeys['UPDATE_RULE']=='RESTRICT' && $foreignKeys['DELETE_RULE']!=='RESTRICT'){ |
|
197 | + if ($foreignKeys['UPDATE_RULE']=='RESTRICT' && $foreignKeys['DELETE_RULE']!=='RESTRICT') { |
|
198 | 198 | $rule = $foreignKeys['DELETE_RULE']; |
199 | 199 | $list[] = ' $wizard->table()->foreign()->constraint(\''.$constraintName.'\')->key(\''.$key.'\')->references(\''.$referenceTable.'\',\''.$referenceColumn.'\')->onDelete()->'.strtolower($rule).'(); |
200 | 200 | '; |
201 | 201 | } |
202 | 202 | } |
203 | 203 | |
204 | - return implode('',$list); |
|
204 | + return implode('', $list); |
|
205 | 205 | } |
206 | 206 | |
207 | 207 | /** |
@@ -212,43 +212,43 @@ discard block |
||
212 | 212 | */ |
213 | 213 | private function getColumnTransformers($column) |
214 | 214 | { |
215 | - if($column=='datetime'){ |
|
215 | + if ($column=='datetime') { |
|
216 | 216 | return 'datetime()'; |
217 | 217 | } |
218 | - elseif($column=='longtext'){ |
|
218 | + elseif ($column=='longtext') { |
|
219 | 219 | return 'longtext()'; |
220 | 220 | } |
221 | - elseif($column=='date'){ |
|
221 | + elseif ($column=='date') { |
|
222 | 222 | return 'date()'; |
223 | 223 | } |
224 | - elseif($column=='text'){ |
|
224 | + elseif ($column=='text') { |
|
225 | 225 | return 'text()'; |
226 | 226 | } |
227 | - elseif($column=='timestamp'){ |
|
227 | + elseif ($column=='timestamp') { |
|
228 | 228 | return 'timestamp()'; |
229 | 229 | } |
230 | - elseif($column=='mediumint'){ |
|
230 | + elseif ($column=='mediumint') { |
|
231 | 231 | return 'mediumint()'; |
232 | 232 | } |
233 | - elseif($column=='tinyint'){ |
|
233 | + elseif ($column=='tinyint') { |
|
234 | 234 | return 'tinyint()'; |
235 | 235 | } |
236 | - elseif($column=='float'){ |
|
236 | + elseif ($column=='float') { |
|
237 | 237 | return 'float()'; |
238 | 238 | } |
239 | - elseif($column=='mediumtext'){ |
|
239 | + elseif ($column=='mediumtext') { |
|
240 | 240 | return 'mediumtext()'; |
241 | 241 | } |
242 | - elseif($column=='mediumblob'){ |
|
242 | + elseif ($column=='mediumblob') { |
|
243 | 243 | return 'mediumblob()'; |
244 | 244 | } |
245 | - elseif($column=='blob'){ |
|
245 | + elseif ($column=='blob') { |
|
246 | 246 | return 'blob()'; |
247 | 247 | } |
248 | - elseif(preg_match('@enum.*\((.*?)\)@',$column,$enum)){ |
|
248 | + elseif (preg_match('@enum.*\((.*?)\)@', $column, $enum)) { |
|
249 | 249 | return 'enum(['.$enum[1].'])'; |
250 | 250 | } |
251 | - else{ |
|
251 | + else { |
|
252 | 252 | return $column; |
253 | 253 | } |
254 | 254 | } |
@@ -260,11 +260,11 @@ discard block |
||
260 | 260 | * @param $field |
261 | 261 | * @return void|mixed |
262 | 262 | */ |
263 | - private function getIndexInformation($index,$field) |
|
263 | + private function getIndexInformation($index, $field) |
|
264 | 264 | { |
265 | 265 | foreach ($index as $key=>$item) { |
266 | 266 | |
267 | - if($item['Column_name'] == $field){ |
|
267 | + if ($item['Column_name']==$field) { |
|
268 | 268 | return $index[$key]; |
269 | 269 | } |
270 | 270 | } |
@@ -282,13 +282,13 @@ discard block |
||
282 | 282 | { |
283 | 283 | $arguments = $this->schema->getArguments(); |
284 | 284 | |
285 | - $only = explode(',',$arguments['only']); |
|
285 | + $only = explode(',', $arguments['only']); |
|
286 | 286 | |
287 | 287 | $list = []; |
288 | 288 | |
289 | - foreach($only as $table){ |
|
289 | + foreach ($only as $table) { |
|
290 | 290 | |
291 | - if(in_array($table,$tables) || in_array($table = strtolower($table),$tables)){ |
|
291 | + if (in_array($table, $tables) || in_array($table = strtolower($table), $tables)) { |
|
292 | 292 | $list[] = $table; |
293 | 293 | } |
294 | 294 | } |
@@ -307,7 +307,7 @@ discard block |
||
307 | 307 | { |
308 | 308 | $list = []; |
309 | 309 | foreach ($index as $key=>$item) { |
310 | - if($item['Non_unique']==1 && $item['Key_name']!=='PRIMARY'){ |
|
310 | + if ($item['Non_unique']==1 && $item['Key_name']!=='PRIMARY') { |
|
311 | 311 | $list[$item['Key_name']][] = $item['Column_name']; |
312 | 312 | } |
313 | 313 | } |
@@ -52,8 +52,7 @@ discard block |
||
52 | 52 | if(!file_exists($makeDirectory)){ |
53 | 53 | files()->makeDirectory($makeDirectory,0755,true); |
54 | 54 | $exist=false; |
55 | - } |
|
56 | - else{ |
|
55 | + } else{ |
|
57 | 56 | $exist=true; |
58 | 57 | } |
59 | 58 | |
@@ -77,17 +76,14 @@ discard block |
||
77 | 76 | |
78 | 77 | if(substr($dbtable,-1)=='s'){ |
79 | 78 | app()->command('model create','model:'.strtolower(substr($dbtable,0,-1)).' table:'.$dbtable.' entity:'.$dbtable); |
80 | - } |
|
81 | - else{ |
|
79 | + } else{ |
|
82 | 80 | app()->command('model create','model:'.strtolower($dbtable).' table:'.$dbtable.' entity:'.$dbtable); |
83 | 81 | } |
84 | 82 | |
85 | 83 | echo $dbtablekey.'- '.$migrationName.' ---> Ok'; |
86 | - } |
|
87 | - elseif($exist){ |
|
84 | + } elseif($exist){ |
|
88 | 85 | echo $dbtablekey.'- '.$migrationName.' ---> (Already Exist)'; |
89 | - } |
|
90 | - else{ |
|
86 | + } else{ |
|
91 | 87 | echo $dbtablekey.'- '.$migrationName.' ---> Fail'; |
92 | 88 | } |
93 | 89 | |
@@ -214,41 +210,29 @@ discard block |
||
214 | 210 | { |
215 | 211 | if($column=='datetime'){ |
216 | 212 | return 'datetime()'; |
217 | - } |
|
218 | - elseif($column=='longtext'){ |
|
213 | + } elseif($column=='longtext'){ |
|
219 | 214 | return 'longtext()'; |
220 | - } |
|
221 | - elseif($column=='date'){ |
|
215 | + } elseif($column=='date'){ |
|
222 | 216 | return 'date()'; |
223 | - } |
|
224 | - elseif($column=='text'){ |
|
217 | + } elseif($column=='text'){ |
|
225 | 218 | return 'text()'; |
226 | - } |
|
227 | - elseif($column=='timestamp'){ |
|
219 | + } elseif($column=='timestamp'){ |
|
228 | 220 | return 'timestamp()'; |
229 | - } |
|
230 | - elseif($column=='mediumint'){ |
|
221 | + } elseif($column=='mediumint'){ |
|
231 | 222 | return 'mediumint()'; |
232 | - } |
|
233 | - elseif($column=='tinyint'){ |
|
223 | + } elseif($column=='tinyint'){ |
|
234 | 224 | return 'tinyint()'; |
235 | - } |
|
236 | - elseif($column=='float'){ |
|
225 | + } elseif($column=='float'){ |
|
237 | 226 | return 'float()'; |
238 | - } |
|
239 | - elseif($column=='mediumtext'){ |
|
227 | + } elseif($column=='mediumtext'){ |
|
240 | 228 | return 'mediumtext()'; |
241 | - } |
|
242 | - elseif($column=='mediumblob'){ |
|
229 | + } elseif($column=='mediumblob'){ |
|
243 | 230 | return 'mediumblob()'; |
244 | - } |
|
245 | - elseif($column=='blob'){ |
|
231 | + } elseif($column=='blob'){ |
|
246 | 232 | return 'blob()'; |
247 | - } |
|
248 | - elseif(preg_match('@enum.*\((.*?)\)@',$column,$enum)){ |
|
233 | + } elseif(preg_match('@enum.*\((.*?)\)@',$column,$enum)){ |
|
249 | 234 | return 'enum(['.$enum[1].'])'; |
250 | - } |
|
251 | - else{ |
|
235 | + } else{ |
|
252 | 236 | return $column; |
253 | 237 | } |
254 | 238 | } |
@@ -127,8 +127,7 @@ discard block |
||
127 | 127 | 'query'=>$query, |
128 | 128 | 'message'=>null, |
129 | 129 | ]; |
130 | - } |
|
131 | - catch (\PDOException $exception){ |
|
130 | + } catch (\PDOException $exception){ |
|
132 | 131 | |
133 | 132 | return [ |
134 | 133 | 'result'=>false, |
@@ -167,8 +166,7 @@ discard block |
||
167 | 166 | if(!file_exists($entityDirectory.''.DIRECTORY_SEPARATOR.''.ucfirst($table))){ |
168 | 167 | $generator = new Generator($entityDirectory.''.DIRECTORY_SEPARATOR.''.ucfirst($table),$table.''); |
169 | 168 | $generator->createClass(); |
170 | - } |
|
171 | - else{ |
|
169 | + } else{ |
|
172 | 170 | $generator = new Generator($entityDirectory.''.DIRECTORY_SEPARATOR.''.ucfirst($table),$table.''); |
173 | 171 | } |
174 | 172 |
@@ -15,14 +15,14 @@ discard block |
||
15 | 15 | return $this->schema->getConnection(); |
16 | 16 | } |
17 | 17 | |
18 | - public function registerMigration($table,$name) |
|
18 | + public function registerMigration($table, $name) |
|
19 | 19 | { |
20 | 20 | return $this->connection()->query( |
21 | 21 | "INSERT INTO migrations SET table_name ='".$table."',name='".$name."' |
22 | 22 | "); |
23 | 23 | } |
24 | 24 | |
25 | - public function checkMigration($table,$name) |
|
25 | + public function checkMigration($table, $name) |
|
26 | 26 | { |
27 | 27 | $query = $this->connection()->query( |
28 | 28 | "SELECT * FROM migrations WHERE table_name='".$table."' and name='".$name."' |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | |
34 | 34 | public function checkMigrationMain() |
35 | 35 | { |
36 | - return (in_array('migrations',$this->showTables())) ? true : false; |
|
36 | + return (in_array('migrations', $this->showTables())) ? true : false; |
|
37 | 37 | } |
38 | 38 | |
39 | 39 | /** |
@@ -71,7 +71,7 @@ discard block |
||
71 | 71 | { |
72 | 72 | $collation = $this->connection()->query('SHOW COLLATION LIKE \''.$collation.'%\'')->fetchAll(); |
73 | 73 | |
74 | - if(isset($collation[0])){ |
|
74 | + if (isset($collation[0])) { |
|
75 | 75 | return $collation[0]['Charset']; |
76 | 76 | } |
77 | 77 | |
@@ -88,7 +88,7 @@ discard block |
||
88 | 88 | { |
89 | 89 | $status = $this->connection()->query('show table status like \''.$table.'\'')->fetchAll(); |
90 | 90 | |
91 | - if(isset($status[0])){ |
|
91 | + if (isset($status[0])) { |
|
92 | 92 | return $status[0]; |
93 | 93 | } |
94 | 94 | |
@@ -124,7 +124,7 @@ discard block |
||
124 | 124 | WHERE rc.CONSTRAINT_SCHEMA = \''.$database.'\' |
125 | 125 | AND rc.TABLE_NAME = \''.$table.'\' AND r.REFERENCED_TABLE_NAME is not null')->fetchAll(); |
126 | 126 | |
127 | - if(isset($query[0])){ |
|
127 | + if (isset($query[0])) { |
|
128 | 128 | return $query[0]; |
129 | 129 | } |
130 | 130 | |
@@ -141,7 +141,7 @@ discard block |
||
141 | 141 | { |
142 | 142 | try { |
143 | 143 | |
144 | - $query =$this->connection()->query($query); |
|
144 | + $query = $this->connection()->query($query); |
|
145 | 145 | |
146 | 146 | return [ |
147 | 147 | 'result'=>true, |
@@ -149,7 +149,7 @@ discard block |
||
149 | 149 | 'message'=>null, |
150 | 150 | ]; |
151 | 151 | } |
152 | - catch (\PDOException $exception){ |
|
152 | + catch (\PDOException $exception) { |
|
153 | 153 | |
154 | 154 | return [ |
155 | 155 | 'result'=>false, |
@@ -165,15 +165,15 @@ discard block |
||
165 | 165 | */ |
166 | 166 | public function generateEntity($table) |
167 | 167 | { |
168 | - if(in_array($table,$this->showTables()) || in_array($table = strtolower($table),$this->showTables())){ |
|
168 | + if (in_array($table, $this->showTables()) || in_array($table = strtolower($table), $this->showTables())) { |
|
169 | 169 | |
170 | 170 | $entityDirectory = path()->model().''.DIRECTORY_SEPARATOR.'Entity'; |
171 | 171 | |
172 | - if(!file_exists(app()->path()->model())){ |
|
172 | + if (!file_exists(app()->path()->model())) { |
|
173 | 173 | files()->makeDirectory(app()->path()->model()); |
174 | 174 | } |
175 | 175 | |
176 | - if(!file_exists($entityDirectory)){ |
|
176 | + if (!file_exists($entityDirectory)) { |
|
177 | 177 | files()->makeDirectory($entityDirectory); |
178 | 178 | } |
179 | 179 | |
@@ -185,27 +185,27 @@ discard block |
||
185 | 185 | $list[] = $column['Field']; |
186 | 186 | } |
187 | 187 | |
188 | - if(!file_exists($entityDirectory.''.DIRECTORY_SEPARATOR.''.ucfirst($table))){ |
|
189 | - $generator = new Generator($entityDirectory.''.DIRECTORY_SEPARATOR.''.ucfirst($table),$table.''); |
|
188 | + if (!file_exists($entityDirectory.''.DIRECTORY_SEPARATOR.''.ucfirst($table))) { |
|
189 | + $generator = new Generator($entityDirectory.''.DIRECTORY_SEPARATOR.''.ucfirst($table), $table.''); |
|
190 | 190 | $generator->createClass(); |
191 | 191 | } |
192 | - else{ |
|
193 | - $generator = new Generator($entityDirectory.''.DIRECTORY_SEPARATOR.''.ucfirst($table),$table.''); |
|
192 | + else { |
|
193 | + $generator = new Generator($entityDirectory.''.DIRECTORY_SEPARATOR.''.ucfirst($table), $table.''); |
|
194 | 194 | } |
195 | 195 | |
196 | 196 | |
197 | 197 | $abstractClassPath = $entityDirectory.''.DIRECTORY_SEPARATOR.''.ucfirst($table).''.DIRECTORY_SEPARATOR.'Entity'; |
198 | 198 | $abstractNamespace = Utils::getNamespace($abstractClassPath.''.DIRECTORY_SEPARATOR.''.ucfirst($table).'Abstract'); |
199 | 199 | |
200 | - $generator->createClassExtend($abstractNamespace,ucfirst($table).'Abstract'); |
|
200 | + $generator->createClassExtend($abstractNamespace, ucfirst($table).'Abstract'); |
|
201 | 201 | |
202 | - $generator = new Generator($abstractClassPath,$table.'Abstract'); |
|
202 | + $generator = new Generator($abstractClassPath, $table.'Abstract'); |
|
203 | 203 | |
204 | 204 | $generator->createClass(); |
205 | 205 | |
206 | - $method =array_merge([ |
|
206 | + $method = array_merge([ |
|
207 | 207 | '__construct' |
208 | - ],array_merge($list,['__get'])); |
|
208 | + ], array_merge($list, ['__get'])); |
|
209 | 209 | |
210 | 210 | $generator->createMethod($method); |
211 | 211 | |
@@ -230,7 +230,7 @@ discard block |
||
230 | 230 | |
231 | 231 | $generator->createClassDocument($createClassDocument); |
232 | 232 | |
233 | - $generator->createMethodDocument(array_merge($createMethodDocument,[ |
|
233 | + $generator->createMethodDocument(array_merge($createMethodDocument, [ |
|
234 | 234 | '__construct' => [ |
235 | 235 | ''.$table.' constructor.', |
236 | 236 | '@param null|object $query' |
@@ -246,7 +246,7 @@ discard block |
||
246 | 246 | $createMethodBody = array_merge([ |
247 | 247 | '__construct' => 'self::$query = $query;', |
248 | 248 | '__get' => 'return static::{$name}();' |
249 | - ],$methodBodyList); |
|
249 | + ], $methodBodyList); |
|
250 | 250 | |
251 | 251 | $generator->createMethodBody($createMethodBody); |
252 | 252 |
@@ -40,7 +40,7 @@ discard block |
||
40 | 40 | */ |
41 | 41 | public function __construct($namespace = null) |
42 | 42 | { |
43 | - if($namespace!==null){ |
|
43 | + if ($namespace!==null) { |
|
44 | 44 | $this->namespace = $namespace; |
45 | 45 | } |
46 | 46 | } |
@@ -72,7 +72,7 @@ discard block |
||
72 | 72 | */ |
73 | 73 | public function getReflectionClass() |
74 | 74 | { |
75 | - if(!isset(static::$singletons['reflectionClass'])){ |
|
75 | + if (!isset(static::$singletons['reflectionClass'])) { |
|
76 | 76 | static::$singletons['reflectionClass'] = new ReflectionClass($this->namespace); |
77 | 77 | } |
78 | 78 | return static::$singletons['reflectionClass']; |
@@ -86,7 +86,7 @@ discard block |
||
86 | 86 | */ |
87 | 87 | public function getReflectionMethod($method) |
88 | 88 | { |
89 | - return new ReflectionMethod($this->namespace,$method); |
|
89 | + return new ReflectionMethod($this->namespace, $method); |
|
90 | 90 | } |
91 | 91 | |
92 | 92 | /** |
@@ -98,12 +98,12 @@ discard block |
||
98 | 98 | * |
99 | 99 | * @throws ReflectionException |
100 | 100 | */ |
101 | - public function isAvailableMethodDocument($method=null,$param=null) |
|
101 | + public function isAvailableMethodDocument($method = null, $param = null) |
|
102 | 102 | { |
103 | 103 | $document = $this->reflectionMethodParams($method)->document; |
104 | 104 | |
105 | - if(is_string($document) |
|
106 | - && preg_match('#@'.$param.'\((.*?)\)\r\n#is',$document,$data)) { |
|
105 | + if (is_string($document) |
|
106 | + && preg_match('#@'.$param.'\((.*?)\)\r\n#is', $document, $data)) { |
|
107 | 107 | if (is_array($data) && isset($data[1])) { |
108 | 108 | $this->documentData = $data[1]; |
109 | 109 | return true; |
@@ -137,7 +137,7 @@ discard block |
||
137 | 137 | */ |
138 | 138 | public function __invoke($namespace = null) |
139 | 139 | { |
140 | - if($namespace!==null){ |
|
140 | + if ($namespace!==null) { |
|
141 | 141 | $this->namespace = $namespace; |
142 | 142 | } |
143 | 143 | return $this; |