@@ -14,7 +14,7 @@ |
||
14 | 14 | * @param $auth |
15 | 15 | * @param $token |
16 | 16 | */ |
17 | - public function __construct($auth,$token) |
|
17 | + public function __construct($auth, $token) |
|
18 | 18 | { |
19 | 19 | parent::__construct($auth); |
20 | 20 |
@@ -52,7 +52,7 @@ discard block |
||
52 | 52 | |
53 | 53 | // with query we bind the returned values to the params property of the auth object. |
54 | 54 | // and so the auth object will make a final return with these values. |
55 | - $this->paramValues('check',$query); |
|
55 | + $this->paramValues('check', $query); |
|
56 | 56 | } |
57 | 57 | |
58 | 58 | /** |
@@ -69,7 +69,7 @@ discard block |
||
69 | 69 | |
70 | 70 | // with query we bind the returned values to the params property of the auth object. |
71 | 71 | // and so the auth object will make a final return with these values. |
72 | - $this->paramValues('login',$query); |
|
72 | + $this->paramValues('login', $query); |
|
73 | 73 | |
74 | 74 | // we assign the credential hash value |
75 | 75 | // to the global of the authenticate object. |
@@ -79,7 +79,7 @@ discard block |
||
79 | 79 | // we update the token value. |
80 | 80 | $this->updateToken(); |
81 | 81 | |
82 | - if(isset($this->auth->params['authToken'])){ |
|
82 | + if (isset($this->auth->params['authToken'])) { |
|
83 | 83 | $this->saveDeviceToken(); |
84 | 84 | } |
85 | 85 | } |
@@ -97,18 +97,18 @@ discard block |
||
97 | 97 | |
98 | 98 | // with query we bind the returned values to the params property of the auth object. |
99 | 99 | // and so the auth object will make a final return with these values. |
100 | - $this->paramValues('logout',$query); |
|
100 | + $this->paramValues('logout', $query); |
|
101 | 101 | |
102 | 102 | //token updating as null |
103 | - if(isset($this->auth->params['authToken'])){ |
|
104 | - if(!$this->deleteDeviceToken()){ |
|
103 | + if (isset($this->auth->params['authToken'])) { |
|
104 | + if (!$this->deleteDeviceToken()) { |
|
105 | 105 | $this->auth->params['status'] = 0; |
106 | 106 | $this->auth->params['exception'] = 'logoutInternal'; |
107 | 107 | return false; |
108 | 108 | } |
109 | 109 | } |
110 | 110 | |
111 | - if($this->auth->params['status']===0){ |
|
111 | + if ($this->auth->params['status']===0) { |
|
112 | 112 | $this->auth->params['exception'] = 'logoutException'; |
113 | 113 | } |
114 | 114 | } |
@@ -11,7 +11,7 @@ |
||
11 | 11 | * @param $deviceTokenId |
12 | 12 | * @param AuthenticateProvider $auth |
13 | 13 | */ |
14 | - public function __construct($deviceTokenId,$auth) |
|
14 | + public function __construct($deviceTokenId, $auth) |
|
15 | 15 | { |
16 | 16 | parent::__construct($auth); |
17 | 17 |
@@ -9,21 +9,21 @@ discard block |
||
9 | 9 | * @param callable|null $callback |
10 | 10 | * @return mixed|null |
11 | 11 | */ |
12 | - protected function checkParamsViaAvailability($data,callable $callback=null) |
|
12 | + protected function checkParamsViaAvailability($data, callable $callback = null) |
|
13 | 13 | { |
14 | - if(is_callable($data) && is_null($callback)){ |
|
14 | + if (is_callable($data) && is_null($callback)) { |
|
15 | 15 | |
16 | 16 | // if an authenticate is provided via the existing check method, |
17 | 17 | // then we return the value of the data that we are checking for with callback help. |
18 | - if($this->check()){ |
|
18 | + if ($this->check()) { |
|
19 | 19 | return call_user_func($data); |
20 | 20 | } |
21 | 21 | } |
22 | 22 | |
23 | 23 | // if an authenticate is provided via the existing check method, |
24 | 24 | // then we return the value of the data that we are checking for with callback help. |
25 | - if($this->check() && isset($this->params[$data])){ |
|
26 | - return call_user_func_array($callback,[$this->params[$data]]); |
|
25 | + if ($this->check() && isset($this->params[$data])) { |
|
26 | + return call_user_func_array($callback, [$this->params[$data]]); |
|
27 | 27 | } |
28 | 28 | |
29 | 29 | return null; |
@@ -38,7 +38,7 @@ discard block |
||
38 | 38 | |
39 | 39 | // we will determine whether |
40 | 40 | // the http path is correct for this method. |
41 | - if(isset($getHttp[$type]) and $getHttp[$type]!==httpMethod()){ |
|
41 | + if (isset($getHttp[$type]) and $getHttp[$type]!==httpMethod()) { |
|
42 | 42 | $this->getExceptionForHttp($getHttp[$type]); |
43 | 43 | } |
44 | 44 | } |
@@ -50,8 +50,8 @@ discard block |
||
50 | 50 | { |
51 | 51 | // if there is a token in the headers, |
52 | 52 | // we return the callback. |
53 | - if(!is_null($this->getTokenSentByUser())){ |
|
54 | - return call_user_func_array($callback,[$this->getTokenSentByUser()]); |
|
53 | + if (!is_null($this->getTokenSentByUser())) { |
|
54 | + return call_user_func_array($callback, [$this->getTokenSentByUser()]); |
|
55 | 55 | } |
56 | 56 | |
57 | 57 | //token false |
@@ -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 string |
@@ -27,7 +27,7 @@ discard block |
||
27 | 27 | */ |
28 | 28 | public function after($field) |
29 | 29 | { |
30 | - $this->wizard->setAlterType('place',['AFTER'=>$field]); |
|
30 | + $this->wizard->setAlterType('place', ['AFTER'=>$field]); |
|
31 | 31 | |
32 | 32 | return $this->wizard; |
33 | 33 | } |
@@ -17,8 +17,7 @@ discard block |
||
17 | 17 | if(isset($nullable[$name])){ |
18 | 18 | if($nullable[$name]===false){ |
19 | 19 | $nullableValue='NOT NULL'; |
20 | - } |
|
21 | - else{ |
|
20 | + } else{ |
|
22 | 21 | $nullableValue='NULL'; |
23 | 22 | } |
24 | 23 | } |
@@ -72,8 +71,7 @@ discard block |
||
72 | 71 | |
73 | 72 | if($this->data['types'][$nameKey]!=='timestamp'){ |
74 | 73 | $list[] = (isset($this->data['default'][$name])) ? ' DEFAULT "'.$this->data['default'][$name].'"' : ''; |
75 | - } |
|
76 | - else{ |
|
74 | + } else{ |
|
77 | 75 | $list[] = (isset($this->data['default'][$name])) ? ' DEFAULT '.$this->data['default'][$name].'' : ''; |
78 | 76 | } |
79 | 77 |
@@ -10,16 +10,16 @@ discard block |
||
10 | 10 | * @param $name |
11 | 11 | * @return string |
12 | 12 | */ |
13 | - protected function getNullableValue($nullable,$name) |
|
13 | + protected function getNullableValue($nullable, $name) |
|
14 | 14 | { |
15 | - $nullableValue=''; |
|
15 | + $nullableValue = ''; |
|
16 | 16 | |
17 | - if(isset($nullable[$name])){ |
|
18 | - if($nullable[$name]===false){ |
|
19 | - $nullableValue='NOT NULL'; |
|
17 | + if (isset($nullable[$name])) { |
|
18 | + if ($nullable[$name]===false) { |
|
19 | + $nullableValue = 'NOT NULL'; |
|
20 | 20 | } |
21 | - else{ |
|
22 | - $nullableValue='NULL'; |
|
21 | + else { |
|
22 | + $nullableValue = 'NULL'; |
|
23 | 23 | } |
24 | 24 | } |
25 | 25 | |
@@ -59,21 +59,21 @@ discard block |
||
59 | 59 | */ |
60 | 60 | protected function getValueWithIsset($name) |
61 | 61 | { |
62 | - $nameKey = array_search($name,$this->data['names']); |
|
62 | + $nameKey = array_search($name, $this->data['names']); |
|
63 | 63 | |
64 | 64 | $list = []; |
65 | - $list[] = $this->getNullableValue($this->data['nullable'],$name); |
|
65 | + $list[] = $this->getNullableValue($this->data['nullable'], $name); |
|
66 | 66 | $list[] = (isset($this->data['autoIncrement'][$name])) ? 'AUTO_INCREMENT' : ''; |
67 | 67 | $list[] = (isset($this->data['primaryKey'][$name])) ? 'PRIMARY KEY' : ''; |
68 | 68 | |
69 | - if($this->data['types'][$nameKey]=='timestamp' && !isset($this->data['default'][$nameKey])){ |
|
69 | + if ($this->data['types'][$nameKey]=='timestamp' && !isset($this->data['default'][$nameKey])) { |
|
70 | 70 | $this->data['default'][$name] = 'CURRENT_TIMESTAMP'; |
71 | 71 | } |
72 | 72 | |
73 | - if($this->data['types'][$nameKey]!=='timestamp'){ |
|
73 | + if ($this->data['types'][$nameKey]!=='timestamp') { |
|
74 | 74 | $list[] = (isset($this->data['default'][$name])) ? ' DEFAULT "'.$this->data['default'][$name].'"' : ''; |
75 | 75 | } |
76 | - else{ |
|
76 | + else { |
|
77 | 77 | $list[] = (isset($this->data['default'][$name])) ? ' DEFAULT '.$this->data['default'][$name].'' : ''; |
78 | 78 | } |
79 | 79 | |
@@ -90,8 +90,8 @@ discard block |
||
90 | 90 | protected function getUniqueValueList($name) |
91 | 91 | { |
92 | 92 | //get unique |
93 | - if(isset($this->data['unique'][$name])){ |
|
94 | - $this->data['uniqueValueList'][] = 'UNIQUE INDEX '.$this->data['unique'][$name]['value'].' ('.$name.' ASC)'; |
|
93 | + if (isset($this->data['unique'][$name])) { |
|
94 | + $this->data['uniqueValueList'][] = 'UNIQUE INDEX '.$this->data['unique'][$name]['value'].' ('.$name.' ASC)'; |
|
95 | 95 | } |
96 | 96 | } |
97 | 97 | |
@@ -101,8 +101,8 @@ discard block |
||
101 | 101 | protected function getIndexValueList($name) |
102 | 102 | { |
103 | 103 | //get index |
104 | - if(isset($this->data['index'][$name])){ |
|
105 | - $this->data['indexValueList'][] = 'INDEX '.$this->data['index'][$name]['value'].' ('.$name.')'; |
|
104 | + if (isset($this->data['index'][$name])) { |
|
105 | + $this->data['indexValueList'][] = 'INDEX '.$this->data['index'][$name]['value'].' ('.$name.')'; |
|
106 | 106 | } |
107 | 107 | } |
108 | 108 | |
@@ -123,19 +123,19 @@ discard block |
||
123 | 123 | */ |
124 | 124 | protected function getCreateDefaultList() |
125 | 125 | { |
126 | - $list = []; |
|
126 | + $list = []; |
|
127 | 127 | |
128 | 128 | foreach ($this->data['names'] as $key=>$name) |
129 | 129 | { |
130 | 130 | list( |
131 | - $nullableValue,$autoIncrementValue, |
|
132 | - $primaryKeyValue,$defaultValue,$commentValue |
|
131 | + $nullableValue, $autoIncrementValue, |
|
132 | + $primaryKeyValue, $defaultValue, $commentValue |
|
133 | 133 | ) = $this->getValueWithIsset($name); |
134 | 134 | |
135 | 135 | //set index values |
136 | 136 | $this->setIndex($name); |
137 | 137 | |
138 | - $list[]=''.$name.' '.$this->data['types'][$key].' '.$nullableValue.' '.$defaultValue.' '.$primaryKeyValue.' '.$autoIncrementValue.' '.$commentValue.''; |
|
138 | + $list[] = ''.$name.' '.$this->data['types'][$key].' '.$nullableValue.' '.$defaultValue.' '.$primaryKeyValue.' '.$autoIncrementValue.' '.$commentValue.''; |
|
139 | 139 | } |
140 | 140 | |
141 | 141 | return $list; |
@@ -146,18 +146,18 @@ discard block |
||
146 | 146 | */ |
147 | 147 | protected function getKeyList() |
148 | 148 | { |
149 | - $keyList = []; |
|
149 | + $keyList = []; |
|
150 | 150 | |
151 | 151 | //multiple indexes |
152 | - if(isset($this->data['index']['indexes'])){ |
|
152 | + if (isset($this->data['index']['indexes'])) { |
|
153 | 153 | |
154 | - foreach ($this->data['index']['indexes'] as $index_key=>$index_value){ |
|
154 | + foreach ($this->data['index']['indexes'] as $index_key=>$index_value) { |
|
155 | 155 | |
156 | 156 | $indexesCommentValue = (isset($index_value['comment'])) ? 'COMMENT "'.$index_value['comment'].'"' : ''; |
157 | 157 | |
158 | 158 | $keyType = (isset($index_value['type'])) ? ucfirst($index_value['type']) : 'KEY'; |
159 | 159 | |
160 | - $keyList[] = "".$keyType." ".$index_value['name']." (".implode(",",$index_value['value']).") ".$indexesCommentValue; |
|
160 | + $keyList[] = "".$keyType." ".$index_value['name']." (".implode(",", $index_value['value']).") ".$indexesCommentValue; |
|
161 | 161 | } |
162 | 162 | } |
163 | 163 | |
@@ -172,13 +172,13 @@ discard block |
||
172 | 172 | { |
173 | 173 | $list = []; |
174 | 174 | |
175 | - foreach ($reference as $constraint=>$values){ |
|
175 | + foreach ($reference as $constraint=>$values) { |
|
176 | 176 | |
177 | - $list[]=',CONSTRAINT '.$constraint.' FOREIGN KEY ('.$values['key'].') |
|
177 | + $list[] = ',CONSTRAINT '.$constraint.' FOREIGN KEY ('.$values['key'].') |
|
178 | 178 | REFERENCES '.$values['references']['table'].'('.$values['references']['field'].') '.$this->getOnProcess($values); |
179 | 179 | } |
180 | 180 | |
181 | - return implode (" ",$list); |
|
181 | + return implode(" ", $list); |
|
182 | 182 | } |
183 | 183 | |
184 | 184 | /** |
@@ -186,7 +186,7 @@ discard block |
||
186 | 186 | */ |
187 | 187 | private function getOnProcess($referenceValue) |
188 | 188 | { |
189 | - if(isset($referenceValue['on']) && isset($referenceValue['onOption'])){ |
|
189 | + if (isset($referenceValue['on']) && isset($referenceValue['onOption'])) { |
|
190 | 190 | return ''.$referenceValue['on'].' '.strtoupper($referenceValue['onOption']).''; |
191 | 191 | } |
192 | 192 |
@@ -25,28 +25,28 @@ discard block |
||
25 | 25 | |
26 | 26 | $this->getDefaultSyntaxGroup(); |
27 | 27 | |
28 | - $this->syntax[]=')'; |
|
28 | + $this->syntax[] = ')'; |
|
29 | 29 | |
30 | 30 | //get table collation |
31 | - if(isset($this->data['tableCollation']['table'])){ |
|
32 | - $this->syntax[]=' DEFAULT CHARACTER SET '.$this->data['tableCollation']['table']; |
|
31 | + if (isset($this->data['tableCollation']['table'])) { |
|
32 | + $this->syntax[] = ' DEFAULT CHARACTER SET '.$this->data['tableCollation']['table']; |
|
33 | 33 | } |
34 | - else{ |
|
35 | - $this->syntax[]=' DEFAULT CHARACTER SET utf8'; |
|
34 | + else { |
|
35 | + $this->syntax[] = ' DEFAULT CHARACTER SET utf8'; |
|
36 | 36 | } |
37 | 37 | |
38 | 38 | //get engine |
39 | - if($this->data['engine']!==null) |
|
39 | + if ($this->data['engine']!==null) |
|
40 | 40 | { |
41 | - $this->syntax[]=' ENGINE='.$this->data['engine'].' '; |
|
41 | + $this->syntax[] = ' ENGINE='.$this->data['engine'].' '; |
|
42 | 42 | } |
43 | - else{ |
|
44 | - $this->syntax[]=' ENGINE=InnoDB '; |
|
43 | + else { |
|
44 | + $this->syntax[] = ' ENGINE=InnoDB '; |
|
45 | 45 | } |
46 | 46 | |
47 | - $syntax = implode("",$this->syntax); |
|
47 | + $syntax = implode("", $this->syntax); |
|
48 | 48 | |
49 | - $query=$this->schema->getConnection()->setQueryBasic($syntax); |
|
49 | + $query = $this->schema->getConnection()->setQueryBasic($syntax); |
|
50 | 50 | |
51 | 51 | return [ |
52 | 52 | 'syntax'=>$syntax, |
@@ -62,25 +62,25 @@ discard block |
||
62 | 62 | private function getDefaultSyntaxGroup() |
63 | 63 | { |
64 | 64 | |
65 | - $this->syntax[]=implode(",",$this->getCreateDefaultList()); |
|
65 | + $this->syntax[] = implode(",", $this->getCreateDefaultList()); |
|
66 | 66 | |
67 | 67 | //get unique values |
68 | - if(isset($this->data['uniqueValueList']) && count($this->data['uniqueValueList'])){ |
|
69 | - $this->syntax[]=','.implode(',',$this->data['uniqueValueList']); |
|
68 | + if (isset($this->data['uniqueValueList']) && count($this->data['uniqueValueList'])) { |
|
69 | + $this->syntax[] = ','.implode(',', $this->data['uniqueValueList']); |
|
70 | 70 | } |
71 | 71 | |
72 | 72 | //get index values |
73 | - if(isset($this->data['indexValueList']) && count($this->data['indexValueList'])){ |
|
74 | - $this->syntax[]=','.implode(',',$this->data['indexValueList']); |
|
73 | + if (isset($this->data['indexValueList']) && count($this->data['indexValueList'])) { |
|
74 | + $this->syntax[] = ','.implode(',', $this->data['indexValueList']); |
|
75 | 75 | } |
76 | 76 | |
77 | 77 | //get index values for key |
78 | - if(count($this->getKeyList())){ |
|
79 | - $this->syntax[]=','.implode(',',$this->getKeyList()); |
|
78 | + if (count($this->getKeyList())) { |
|
79 | + $this->syntax[] = ','.implode(',', $this->getKeyList()); |
|
80 | 80 | } |
81 | 81 | |
82 | - if(count($this->data['references'])){ |
|
83 | - $this->syntax[]=$this->getReferenceSyntax($this->data['references']); |
|
82 | + if (count($this->data['references'])) { |
|
83 | + $this->syntax[] = $this->getReferenceSyntax($this->data['references']); |
|
84 | 84 | } |
85 | 85 | } |
86 | 86 | |
@@ -104,33 +104,33 @@ discard block |
||
104 | 104 | |
105 | 105 | private function change($alterType) |
106 | 106 | { |
107 | - if(isset($alterType['place'])){ |
|
107 | + if (isset($alterType['place'])) { |
|
108 | 108 | |
109 | - foreach ($alterType['place'] as $placeKey=>$placeValue){ |
|
110 | - $placeList=$placeKey .' '.$placeValue.''; |
|
109 | + foreach ($alterType['place'] as $placeKey=>$placeValue) { |
|
110 | + $placeList = $placeKey.' '.$placeValue.''; |
|
111 | 111 | } |
112 | 112 | |
113 | - $syntax = implode("",$this->syntax); |
|
113 | + $syntax = implode("", $this->syntax); |
|
114 | 114 | |
115 | 115 | $columns = $this->schema->getConnection()->showColumnsFrom($this->table); |
116 | 116 | |
117 | - foreach ($columns as $columnKey=>$columnData){ |
|
118 | - if($columnData['Field']==$placeValue){ |
|
117 | + foreach ($columns as $columnKey=>$columnData) { |
|
118 | + if ($columnData['Field']==$placeValue) { |
|
119 | 119 | $changeAbleField = $columns[$columnKey+1]['Field']; |
120 | 120 | } |
121 | 121 | } |
122 | 122 | |
123 | - $syntaxList = explode(' ',$syntax); |
|
123 | + $syntaxList = explode(' ', $syntax); |
|
124 | 124 | |
125 | - if(current($syntaxList)!==$changeAbleField){ |
|
126 | - $alterSytanx = 'ALTER TABLE '.$this->table.' change '.$changeAbleField.' '.current($syntaxList).' '.implode(' ',array_splice($syntaxList,1)).' '.$placeList; |
|
125 | + if (current($syntaxList)!==$changeAbleField) { |
|
126 | + $alterSytanx = 'ALTER TABLE '.$this->table.' change '.$changeAbleField.' '.current($syntaxList).' '.implode(' ', array_splice($syntaxList, 1)).' '.$placeList; |
|
127 | 127 | } |
128 | - else{ |
|
128 | + else { |
|
129 | 129 | $alterSytanx = 'ALTER TABLE '.$this->table.' modify '.$syntax.' '.$placeList; |
130 | 130 | } |
131 | 131 | |
132 | 132 | |
133 | - $query=$this->schema->getConnection()->setQueryBasic($alterSytanx); |
|
133 | + $query = $this->schema->getConnection()->setQueryBasic($alterSytanx); |
|
134 | 134 | |
135 | 135 | return [ |
136 | 136 | 'syntax'=>$syntax, |
@@ -143,17 +143,17 @@ discard block |
||
143 | 143 | |
144 | 144 | private function addColumn($alterType) |
145 | 145 | { |
146 | - if(isset($alterType['place'])){ |
|
146 | + if (isset($alterType['place'])) { |
|
147 | 147 | |
148 | - foreach ($alterType['place'] as $placeKey=>$placeValue){ |
|
149 | - $placeList=$placeKey .' '.$placeValue.''; |
|
148 | + foreach ($alterType['place'] as $placeKey=>$placeValue) { |
|
149 | + $placeList = $placeKey.' '.$placeValue.''; |
|
150 | 150 | } |
151 | 151 | |
152 | - $syntax = implode("",$this->syntax); |
|
152 | + $syntax = implode("", $this->syntax); |
|
153 | 153 | |
154 | 154 | $alterSytanx = 'ALTER TABLE '.$this->table.' ADD COLUMN '.$syntax.' '.$placeList; |
155 | 155 | |
156 | - $query=$this->schema->getConnection()->setQueryBasic($alterSytanx); |
|
156 | + $query = $this->schema->getConnection()->setQueryBasic($alterSytanx); |
|
157 | 157 | |
158 | 158 | return [ |
159 | 159 | 'syntax'=>$syntax, |
@@ -30,8 +30,7 @@ discard block |
||
30 | 30 | //get table collation |
31 | 31 | if(isset($this->data['tableCollation']['table'])){ |
32 | 32 | $this->syntax[]=' DEFAULT CHARACTER SET '.$this->data['tableCollation']['table']; |
33 | - } |
|
34 | - else{ |
|
33 | + } else{ |
|
35 | 34 | $this->syntax[]=' DEFAULT CHARACTER SET utf8'; |
36 | 35 | } |
37 | 36 | |
@@ -39,8 +38,7 @@ discard block |
||
39 | 38 | if($this->data['engine']!==null) |
40 | 39 | { |
41 | 40 | $this->syntax[]=' ENGINE='.$this->data['engine'].' '; |
42 | - } |
|
43 | - else{ |
|
41 | + } else{ |
|
44 | 42 | $this->syntax[]=' ENGINE=InnoDB '; |
45 | 43 | } |
46 | 44 | |
@@ -124,8 +122,7 @@ discard block |
||
124 | 122 | |
125 | 123 | if(current($syntaxList)!==$changeAbleField){ |
126 | 124 | $alterSytanx = 'ALTER TABLE '.$this->table.' change '.$changeAbleField.' '.current($syntaxList).' '.implode(' ',array_splice($syntaxList,1)).' '.$placeList; |
127 | - } |
|
128 | - else{ |
|
125 | + } else{ |
|
129 | 126 | $alterSytanx = 'ALTER TABLE '.$this->table.' modify '.$syntax.' '.$placeList; |
130 | 127 | } |
131 | 128 |
@@ -14,7 +14,7 @@ discard block |
||
14 | 14 | /** |
15 | 15 | * @var $type |
16 | 16 | */ |
17 | - public $type='project'; |
|
17 | + public $type = 'project'; |
|
18 | 18 | |
19 | 19 | /** |
20 | 20 | * @var array |
@@ -31,7 +31,7 @@ discard block |
||
31 | 31 | /** |
32 | 32 | * @var $commandRule |
33 | 33 | */ |
34 | - public $commandRule=[]; |
|
34 | + public $commandRule = []; |
|
35 | 35 | |
36 | 36 | /** |
37 | 37 | * @method create |
@@ -46,17 +46,17 @@ discard block |
||
46 | 46 | $this->directory['projectDir'] = $this->projectPath(); |
47 | 47 | $this->argument['exceptionNamespace'] = app()->namespace()->exception(); |
48 | 48 | $this->argument['resourcePath'] = app()->path()->appResourche(); |
49 | - $this->argument['testNamespace'] = app()->namespace()->tests(); |
|
49 | + $this->argument['testNamespace'] = app()->namespace()->tests(); |
|
50 | 50 | |
51 | - $recursiveDefaultDirectory = explode("\\",$this->argument['project']); |
|
51 | + $recursiveDefaultDirectory = explode("\\", $this->argument['project']); |
|
52 | 52 | $this->argument['applicationName'] = pos($recursiveDefaultDirectory); |
53 | 53 | $recursiveDefaultDirectory[] = 'V1'; |
54 | 54 | $recursiveDefaultDirectoryList = []; |
55 | 55 | |
56 | - foreach (array_slice($recursiveDefaultDirectory,1) as $defaultDirectory){ |
|
56 | + foreach (array_slice($recursiveDefaultDirectory, 1) as $defaultDirectory) { |
|
57 | 57 | |
58 | - $recursiveDefaultDirectoryList[]=$defaultDirectory; |
|
59 | - $this->directory[$defaultDirectory.'Path'] = $this->projectPath().''.implode("/",$recursiveDefaultDirectoryList); |
|
58 | + $recursiveDefaultDirectoryList[] = $defaultDirectory; |
|
59 | + $this->directory[$defaultDirectory.'Path'] = $this->projectPath().''.implode("/", $recursiveDefaultDirectoryList); |
|
60 | 60 | } |
61 | 61 | |
62 | 62 | //$this->directory['optionalDir'] = $this->optional(); |
@@ -82,7 +82,7 @@ discard block |
||
82 | 82 | //$this->directory['sourceDir'] = $this->sourceDir(); |
83 | 83 | //$this->directory['sourceSupportDir'] = $this->sourceSupportDir(); |
84 | 84 | //$this->directory['sourceSupportTraitDir'] = $this->sourceSupportDir().'/Traits'; |
85 | - $this->directory['exceptionDir'] = app()->path()->exception(); |
|
85 | + $this->directory['exceptionDir'] = app()->path()->exception(); |
|
86 | 86 | |
87 | 87 | //set project directory |
88 | 88 | $this->file->makeDirectory($this); |
@@ -97,7 +97,7 @@ discard block |
||
97 | 97 | $this->touch['kernel/worker'] = $this->provider().'/WorkerServiceProvider.php'; |
98 | 98 | $this->touch['kernel/authenticate'] = $this->provider().'/AuthenticateServiceProvider.php'; |
99 | 99 | $this->touch['kernel/role'] = $this->provider().'/RoleServiceProvider.php'; |
100 | - $this->touch['test/testcase'] = $this->test().'/TestCase.php'; |
|
100 | + $this->touch['test/testcase'] = $this->test().'/TestCase.php'; |
|
101 | 101 | $this->touch['kernel/consoleevent'] = $this->provider().'/ConsoleEventServiceProvider.php'; |
102 | 102 | $this->touch['middleware/authenticate'] = $this->middleware().'/Authenticate.php'; |
103 | 103 | $this->touch['middleware/ratelimit'] = $this->middleware().'/RateLimit.php'; |
@@ -136,7 +136,7 @@ discard block |
||
136 | 136 | $this->touch['app/gitignore'] = $this->projectPath().'/.gitignore'; |
137 | 137 | $this->touch['app/composer'] = $this->projectPath().'/composer.json'; |
138 | 138 | $this->touch['test/index'] = $this->storage().'/index.html'; |
139 | - $this->touch['exception/authenticate'] = $this->directory['exceptionDir'] .'/AuthenticateException.php'; |
|
139 | + $this->touch['exception/authenticate'] = $this->directory['exceptionDir'].'/AuthenticateException.php'; |
|
140 | 140 | |
141 | 141 | //set project touch |
142 | 142 | $this->file->touch($this); |
@@ -7,7 +7,7 @@ discard block |
||
7 | 7 | /** |
8 | 8 | * @var null |
9 | 9 | */ |
10 | - public $credentialHash=null; |
|
10 | + public $credentialHash = null; |
|
11 | 11 | |
12 | 12 | /** |
13 | 13 | * @return string |
@@ -16,7 +16,7 @@ discard block |
||
16 | 16 | { |
17 | 17 | // the absolute params property must be present |
18 | 18 | // in the object and the params value must be the builder key. |
19 | - if(property_exists($this,'params') and isset($this->params['builder'])){ |
|
19 | + if (property_exists($this, 'params') and isset($this->params['builder'])) { |
|
20 | 20 | |
21 | 21 | // a real token will be generated after |
22 | 22 | // you get the first method of the query builder value. |
@@ -24,7 +24,7 @@ discard block |
||
24 | 24 | |
25 | 25 | // we refer to the token closure feature on the config to enable |
26 | 26 | // the creation of user-based tokens on the application side. |
27 | - return $this->getTokenFromProvider($authData,function() use($authData){ |
|
27 | + return $this->getTokenFromProvider($authData, function() use($authData){ |
|
28 | 28 | return md5(sha1($authData->id.'__'.$this->credentialHash.'__'.time().'__'.fingerPrint())); |
29 | 29 | }); |
30 | 30 | } |
@@ -37,11 +37,11 @@ discard block |
||
37 | 37 | * @param callable $callback |
38 | 38 | * @return mixed |
39 | 39 | */ |
40 | - private function getTokenFromProvider($authData,callable $callback) |
|
40 | + private function getTokenFromProvider($authData, callable $callback) |
|
41 | 41 | { |
42 | 42 | // if the token value is a closure value, |
43 | 43 | // we will run a user-based token closure. |
44 | - if(app()->has('authenticate.token') && is_callable($token = app()->get('authenticate.token'))){ |
|
44 | + if (app()->has('authenticate.token') && is_callable($token = app()->get('authenticate.token'))) { |
|
45 | 45 | return $token($authData); |
46 | 46 | } |
47 | 47 |