Test Setup Failed
Push — master ( d6fde7...1e848b )
by Php Easy Api
04:20
created
src/resta/Database/Migration/Src/SchemaFacade.php 1 patch
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -21,20 +21,20 @@  discard block
 block discarded – undo
21 21
     /**
22 22
      * @var array
23 23
      */
24
-    protected static $config=array();
24
+    protected static $config = array();
25 25
 
26 26
     /**
27 27
      * @var array $tables
28 28
      */
29
-    protected static $tables=array();
29
+    protected static $tables = array();
30 30
 
31 31
     /**
32 32
      * SchemaFacade constructor.
33 33
      */
34
-    public function __construct($config=array())
34
+    public function __construct($config = array())
35 35
     {
36
-        if(count($config)){
37
-            $this->schema=new Schema($config);
36
+        if (count($config)) {
37
+            $this->schema = new Schema($config);
38 38
         }
39 39
     }
40 40
 
@@ -42,9 +42,9 @@  discard block
 block discarded – undo
42 42
      * @param array $params
43 43
      * @return SchemaFacadeContract
44 44
      */
45
-    public static function setConfig($params=array())
45
+    public static function setConfig($params = array())
46 46
     {
47
-        self::$config=$params;
47
+        self::$config = $params;
48 48
 
49 49
         return new static();
50 50
     }
@@ -53,9 +53,9 @@  discard block
 block discarded – undo
53 53
      * @param array $tables
54 54
      * @return SchemaFacadeContract
55 55
      */
56
-    public static function tables($tables=array())
56
+    public static function tables($tables = array())
57 57
     {
58
-        self::$tables=$tables;
58
+        self::$tables = $tables;
59 59
 
60 60
         return new static();
61 61
     }
@@ -66,8 +66,8 @@  discard block
 block discarded – undo
66 66
      */
67 67
     public static function getInstance()
68 68
     {
69
-        if(is_null(self::$instance)){
70
-            self::$instance=new self(self::$config);
69
+        if (is_null(self::$instance)) {
70
+            self::$instance = new self(self::$config);
71 71
         }
72 72
         return self::$instance;
73 73
     }
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
     {
89 89
         $schema = self::getSchema();
90 90
 
91
-        $schema->params['tables']=self::$tables;
91
+        $schema->params['tables'] = self::$tables;
92 92
 
93 93
         return $schema->pull();
94 94
     }
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
     {
101 101
         $schema = self::getSchema();
102 102
 
103
-        $schema->params['tables']=self::$tables;
103
+        $schema->params['tables'] = self::$tables;
104 104
 
105 105
         return $schema->push();
106 106
     }
Please login to merge, or discard this patch.
src/resta/Database/Migration/Src/Schema.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
      * Schema constructor.
40 40
      * @param null $config
41 41
      */
42
-    public function __construct($config=null)
42
+    public function __construct($config = null)
43 43
     {
44 44
         $this->config           = $config;
45 45
         $this->driver           = $this->config['database']['driver'];
Please login to merge, or discard this patch.
src/resta/Database/Migration/Src/SchemaCapsule.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
     /**
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
      */
70 70
     private function checkErrors($wizard)
71 71
     {
72
-        if(count($wizard->getNames())!==count($wizard->getTypes())){
72
+        if (count($wizard->getNames())!==count($wizard->getTypes())) {
73 73
             $wizard->setError('name and types are not equal');
74 74
         }
75 75
     }
@@ -105,11 +105,11 @@  discard block
 block discarded – undo
105 105
      * @param $method
106 106
      * @return string
107 107
      */
108
-    private function callbackWizardInstance($method,callable $callback)
108
+    private function callbackWizardInstance($method, callable $callback)
109 109
     {
110 110
         $wizardInstance = $this->getWizardInstance($method);
111 111
 
112
-        $callbackReturn = call_user_func_array($callback,[$wizardInstance]);
112
+        $callbackReturn = call_user_func_array($callback, [$wizardInstance]);
113 113
 
114 114
         $this->checkErrors($wizardInstance);
115 115
 
Please login to merge, or discard this patch.
src/resta/Database/Migration/Src/Connector/Mysql.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -22,14 +22,14 @@
 block discarded – undo
22 22
      */
23 23
     public function __construct($config)
24 24
     {
25
-        if(is_null(self::$instance)){
25
+        if (is_null(self::$instance)) {
26 26
 
27 27
             //get pdo dsn
28
-            $dsn=''.$config['driver'].':host='.$config['host'].';dbname='.$config['database'].'';
28
+            $dsn = ''.$config['driver'].':host='.$config['host'].';dbname='.$config['database'].'';
29 29
             $this->connection = new \PDO($dsn, $config['user'], $config['password']);
30 30
             $this->connection->setAttribute(\PDO::ATTR_ERRMODE, \PDO::ERRMODE_EXCEPTION);
31 31
 
32
-            self::$instance=true;
32
+            self::$instance = true;
33 33
         }
34 34
     }
35 35
 
Please login to merge, or discard this patch.
src/resta/Database/Migration/Src/GrammarStructure/Mysql/QueryBuilder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
      * @param $schema
29 29
      * @param $object
30 30
      */
31
-    public function __construct($schema,$table,$object)
31
+    public function __construct($schema, $table, $object)
32 32
     {
33 33
         $this->schema   = $schema;
34 34
         $this->table    = $table;
Please login to merge, or discard this patch.
Database/Migration/Src/GrammarStructure/Mysql/Wizard/IndexProperties.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
      * @param $index_name
22 22
      * @param $wizard
23 23
      */
24
-    public function __construct($index_name,$wizard)
24
+    public function __construct($index_name, $wizard)
25 25
     {
26 26
         $this->wizard       = $wizard;
27 27
         $this->index_name   = $index_name;
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
      */
33 33
     public function fulltext()
34 34
     {
35
-        $this->wizard->updateIndexesForSpecialist($this->index_name,__FUNCTION__);
35
+        $this->wizard->updateIndexesForSpecialist($this->index_name, __FUNCTION__);
36 36
     }
37 37
 
38 38
     /**
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
      */
41 41
     public function unique()
42 42
     {
43
-        $this->wizard->updateIndexesForSpecialist($this->index_name,__FUNCTION__);
43
+        $this->wizard->updateIndexesForSpecialist($this->index_name, __FUNCTION__);
44 44
     }
45 45
 
46 46
 }
Please login to merge, or discard this patch.
resta/Database/Migration/Src/GrammarStructure/Mysql/Wizard/WizardAlter.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@  discard block
 block discarded – undo
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 $after
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
      */
19 19
     public function __construct($wizard)
20 20
     {
21
-        $this->wizard=$wizard;
21
+        $this->wizard = $wizard;
22 22
     }
23 23
 
24 24
     /**
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
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
     }
Please login to merge, or discard this patch.
Database/Migration/Src/GrammarStructure/Mysql/Wizard/EngineProperties.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
      */
17 17
     public function __construct($wizard)
18 18
     {
19
-        $this->wizard=$wizard;
19
+        $this->wizard = $wizard;
20 20
     }
21 21
 
22 22
     /**
Please login to merge, or discard this patch.
src/resta/Database/Migration/Src/GrammarStructure/Mysql/Wizard/Types.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
      */
18 18
     public function __construct($wizard)
19 19
     {
20
-       $this->wizard=$wizard;
20
+        $this->wizard=$wizard;
21 21
     }
22 22
 
23 23
     /**
Please login to merge, or discard this patch.
Spacing   +29 added lines, -29 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
17 17
      */
18 18
     public function __construct($wizard)
19 19
     {
20
-       $this->wizard=$wizard;
20
+       $this->wizard = $wizard;
21 21
     }
22 22
 
23 23
     /**
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
      */
27 27
     public function bigint($value)
28 28
     {
29
-        $this->wizard->setTypes(__FUNCTION__,$value);
29
+        $this->wizard->setTypes(__FUNCTION__, $value);
30 30
 
31 31
         return $this->wizard;
32 32
     }
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
      */
38 38
     public function binary($value)
39 39
     {
40
-        $this->wizard->setTypes(__FUNCTION__,$value);
40
+        $this->wizard->setTypes(__FUNCTION__, $value);
41 41
 
42 42
         return $this->wizard;
43 43
     }
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
      */
49 49
     public function bit($value)
50 50
     {
51
-        $this->wizard->setTypes(__FUNCTION__,$value);
51
+        $this->wizard->setTypes(__FUNCTION__, $value);
52 52
 
53 53
         return $this->wizard;
54 54
     }
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
      */
59 59
     public function blob()
60 60
     {
61
-        $this->wizard->setTypes(__FUNCTION__,null);
61
+        $this->wizard->setTypes(__FUNCTION__, null);
62 62
 
63 63
         return $this->wizard;
64 64
     }
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
      */
70 70
     public function char($value)
71 71
     {
72
-        $this->wizard->setTypes(__FUNCTION__,$value);
72
+        $this->wizard->setTypes(__FUNCTION__, $value);
73 73
 
74 74
         return $this->wizard;
75 75
     }
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
      */
80 80
     public function date()
81 81
     {
82
-        $this->wizard->setTypes(__FUNCTION__,null);
82
+        $this->wizard->setTypes(__FUNCTION__, null);
83 83
 
84 84
         return $this->wizard;
85 85
     }
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
      */
90 90
     public function dateTime()
91 91
     {
92
-        $this->wizard->setTypes(__FUNCTION__,null);
92
+        $this->wizard->setTypes(__FUNCTION__, null);
93 93
 
94 94
         return $this->wizard;
95 95
     }
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
      */
100 100
     public function decimal()
101 101
     {
102
-        $this->wizard->setTypes(__FUNCTION__,null);
102
+        $this->wizard->setTypes(__FUNCTION__, null);
103 103
 
104 104
         return $this->wizard;
105 105
     }
@@ -109,7 +109,7 @@  discard block
 block discarded – undo
109 109
      */
110 110
     public function double()
111 111
     {
112
-        $this->wizard->setTypes(__FUNCTION__,null);
112
+        $this->wizard->setTypes(__FUNCTION__, null);
113 113
 
114 114
         return $this->wizard;
115 115
     }
@@ -118,9 +118,9 @@  discard block
 block discarded – undo
118 118
      * @param $value
119 119
      * @return WizardContract
120 120
      */
121
-    public function enum($value=array())
121
+    public function enum($value = array())
122 122
     {
123
-        $this->wizard->setTypes(__FUNCTION__,$value,'enum');
123
+        $this->wizard->setTypes(__FUNCTION__, $value, 'enum');
124 124
 
125 125
         return $this->wizard;
126 126
     }
@@ -130,7 +130,7 @@  discard block
 block discarded – undo
130 130
      */
131 131
     public function float()
132 132
     {
133
-        $this->wizard->setTypes(__FUNCTION__,null);
133
+        $this->wizard->setTypes(__FUNCTION__, null);
134 134
 
135 135
         return $this->wizard;
136 136
     }
@@ -139,9 +139,9 @@  discard block
 block discarded – undo
139 139
      * @param int $value
140 140
      * @return WizardContract
141 141
      */
142
-    public function int($value=11)
142
+    public function int($value = 11)
143 143
     {
144
-        $this->wizard->setTypes(__FUNCTION__,$value);
144
+        $this->wizard->setTypes(__FUNCTION__, $value);
145 145
 
146 146
         return $this->wizard;
147 147
     }
@@ -151,7 +151,7 @@  discard block
 block discarded – undo
151 151
      */
152 152
     public function longtext()
153 153
     {
154
-        $this->wizard->setTypes(__FUNCTION__,null);
154
+        $this->wizard->setTypes(__FUNCTION__, null);
155 155
 
156 156
         return $this->wizard;
157 157
     }
@@ -161,7 +161,7 @@  discard block
 block discarded – undo
161 161
      */
162 162
     public function mediumtext()
163 163
     {
164
-        $this->wizard->setTypes(__FUNCTION__,null);
164
+        $this->wizard->setTypes(__FUNCTION__, null);
165 165
 
166 166
         return $this->wizard;
167 167
     }
@@ -172,7 +172,7 @@  discard block
 block discarded – undo
172 172
      */
173 173
     public function json()
174 174
     {
175
-        $this->wizard->setTypes(__FUNCTION__,null);
175
+        $this->wizard->setTypes(__FUNCTION__, null);
176 176
 
177 177
         return $this->wizard;
178 178
     }
@@ -183,7 +183,7 @@  discard block
 block discarded – undo
183 183
      */
184 184
     public function set($value)
185 185
     {
186
-        $this->wizard->setTypes(__FUNCTION__,$value);
186
+        $this->wizard->setTypes(__FUNCTION__, $value);
187 187
 
188 188
         return $this->wizard;
189 189
     }
@@ -194,7 +194,7 @@  discard block
 block discarded – undo
194 194
      */
195 195
     public function text($value)
196 196
     {
197
-        $this->wizard->setTypes(__FUNCTION__,$value);
197
+        $this->wizard->setTypes(__FUNCTION__, $value);
198 198
 
199 199
         return $this->wizard;
200 200
     }
@@ -205,7 +205,7 @@  discard block
 block discarded – undo
205 205
      */
206 206
     public function time($value)
207 207
     {
208
-        $this->wizard->setTypes(__FUNCTION__,$value);
208
+        $this->wizard->setTypes(__FUNCTION__, $value);
209 209
 
210 210
         return $this->wizard;
211 211
     }
@@ -216,7 +216,7 @@  discard block
 block discarded – undo
216 216
      */
217 217
     public function mediumint($value)
218 218
     {
219
-        $this->wizard->setTypes(__FUNCTION__,$value);
219
+        $this->wizard->setTypes(__FUNCTION__, $value);
220 220
 
221 221
         return $this->wizard;
222 222
     }
@@ -227,7 +227,7 @@  discard block
 block discarded – undo
227 227
      */
228 228
     public function timestamp($value)
229 229
     {
230
-        $this->wizard->setTypes(__FUNCTION__,$value);
230
+        $this->wizard->setTypes(__FUNCTION__, $value);
231 231
 
232 232
         return $this->wizard;
233 233
     }
@@ -237,7 +237,7 @@  discard block
 block discarded – undo
237 237
      */
238 238
     public function real()
239 239
     {
240
-        $this->wizard->setTypes(__FUNCTION__,null);
240
+        $this->wizard->setTypes(__FUNCTION__, null);
241 241
 
242 242
         return $this->wizard;
243 243
     }
@@ -248,7 +248,7 @@  discard block
 block discarded – undo
248 248
      */
249 249
     public function smallint($value)
250 250
     {
251
-        $this->wizard->setTypes(__FUNCTION__,$value);
251
+        $this->wizard->setTypes(__FUNCTION__, $value);
252 252
 
253 253
         return $this->wizard;
254 254
     }
@@ -259,7 +259,7 @@  discard block
 block discarded – undo
259 259
      */
260 260
     public function tinyint($value)
261 261
     {
262
-        $this->wizard->setTypes(__FUNCTION__,$value);
262
+        $this->wizard->setTypes(__FUNCTION__, $value);
263 263
 
264 264
         return $this->wizard;
265 265
     }
@@ -270,7 +270,7 @@  discard block
 block discarded – undo
270 270
      */
271 271
     public function tinytext($value)
272 272
     {
273
-        $this->wizard->setTypes(__FUNCTION__,$value);
273
+        $this->wizard->setTypes(__FUNCTION__, $value);
274 274
 
275 275
         return $this->wizard;
276 276
     }
@@ -281,7 +281,7 @@  discard block
 block discarded – undo
281 281
      */
282 282
     public function varchar($value)
283 283
     {
284
-        $this->wizard->setTypes(__FUNCTION__,$value);
284
+        $this->wizard->setTypes(__FUNCTION__, $value);
285 285
 
286 286
         return $this->wizard;
287 287
     }
@@ -292,7 +292,7 @@  discard block
 block discarded – undo
292 292
      */
293 293
     public function year($value)
294 294
     {
295
-        $this->wizard->setTypes(__FUNCTION__,$value);
295
+        $this->wizard->setTypes(__FUNCTION__, $value);
296 296
 
297 297
         return $this->wizard;
298 298
     }
Please login to merge, or discard this patch.