Test Failed
Push — master ( 485f1a...210857 )
by Lucas
02:28
created
src/Silk/Exchange/Extractor/Extractor.php 3 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
 {
15 15
     /**
16 16
      * Extrai as informações existentes em uma classe
17
-     * @param $object
17
+     * @param \Silk\Model\AbstractMappableModel $object
18 18
      * @return array
19 19
      */
20 20
     public static function extract($object, $parent = true)
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
 
24 24
         $class = (new \ReflectionClass($object))->getProperties();
25 25
 
26
-        if($parent == false)
26
+        if ($parent == false)
27 27
             $class = (new \ReflectionClass($object))->getParentClass()->getProperties();
28 28
 
29 29
         foreach ($class as $property) {
Please login to merge, or discard this patch.
Braces   +6 added lines, -4 removed lines patch added patch discarded remove patch
@@ -23,14 +23,16 @@
 block discarded – undo
23 23
 
24 24
         $class = (new \ReflectionClass($object))->getProperties();
25 25
 
26
-        if($parent == false)
27
-            $class = (new \ReflectionClass($object))->getParentClass()->getProperties();
26
+        if($parent == false) {
27
+                    $class = (new \ReflectionClass($object))->getParentClass()->getProperties();
28
+        }
28 29
 
29 30
         foreach ($class as $property) {
30 31
             $config = new PropertyConfiguration($property, $object);
31 32
 
32
-            if ($config->ignore() || $config->shouldIgnoreIfNull())
33
-                continue;
33
+            if ($config->ignore() || $config->shouldIgnoreIfNull()) {
34
+                            continue;
35
+            }
34 36
 
35 37
             $name = $config->getAlias();
36 38
             $data = $config->getValue();
Please login to merge, or discard this patch.
src/Silk/Model/AbstractMappableModel.php 3 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -105,7 +105,7 @@
 block discarded – undo
105 105
 
106 106
     /**
107 107
      * Define o valor da chave primária.
108
-     * @param $id
108
+     * @param integer $id
109 109
      */
110 110
     public function setId($id)
111 111
     {
Please login to merge, or discard this patch.
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
         $this->lazy = $lazy;
75 75
 
76 76
         // Se não for lazy load, carrega o objeto
77
-        if(!$this->lazy)
77
+        if (!$this->lazy)
78 78
             $this->populate($this->where);
79 79
     }
80 80
 
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
     public function __call($name, $arg)
91 91
     {
92 92
         // Carrega o objeto se por lazy load
93
-        if($this->lazy)
93
+        if ($this->lazy)
94 94
             $this->populate($this->where);
95 95
     }
96 96
 
@@ -125,7 +125,7 @@  discard block
 block discarded – undo
125 125
     {
126 126
         // Se for numérico ou string, presume-se
127 127
         // que é uma chave primária.
128
-        if(is_numeric($param) || is_string($param))
128
+        if (is_numeric($param) || is_string($param))
129 129
         {
130 130
             $this->populateFromId($param);
131 131
         }
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
         // Verifica se é um comando do tipo where
134 134
         // que pode ser usado diretamente como parâmetro
135 135
         // no TableGateway do Zend Framework 2.
136
-        else if(!is_null($param))
136
+        else if (!is_null($param))
137 137
         {
138 138
             $this->populateFromWhere($param);
139 139
         }
@@ -150,7 +150,7 @@  discard block
 block discarded – undo
150 150
      */
151 151
     private function populateFromId($id)
152 152
     {
153
-        if(empty($this->primaryKey))
153
+        if (empty($this->primaryKey))
154 154
             throw new NoPrimaryKeyException();
155 155
 
156 156
         $this->populateFromWhere([$this->primaryKey => $id]);
@@ -169,7 +169,7 @@  discard block
 block discarded – undo
169 169
     {
170 170
         $resultSet = $this->tableGateway->select($where);
171 171
 
172
-        if($resultSet->count() === 0)
172
+        if ($resultSet->count() === 0)
173 173
             throw new NoDataFoundException();
174 174
 
175 175
         $array = $resultSet->toArray()[0];
@@ -180,7 +180,7 @@  discard block
 block discarded – undo
180 180
      * Método a ser executado antes de salvar o objeto.
181 181
      * @return mixed
182 182
      */
183
-    protected function beforeSave(){}
183
+    protected function beforeSave() {}
184 184
 
185 185
     /**
186 186
      * Método responsável por salvar um objeto no banco de dados
@@ -192,7 +192,7 @@  discard block
 block discarded – undo
192 192
      */
193 193
     public function save($callBeforeSave = true)
194 194
     {
195
-        if($callBeforeSave) {
195
+        if ($callBeforeSave) {
196 196
             $this->beforeSave();
197 197
             $this->tableGateway = new TableGateway($this, Reader::getConfig($this)['table']);
198 198
         }
@@ -201,7 +201,7 @@  discard block
 block discarded – undo
201 201
             $this->tableGateway = new TableGateway($this, Reader::getConfig($this)['parent']);
202 202
         }
203 203
 
204
-        if(empty($this->getId()))
204
+        if (empty($this->getId()))
205 205
         {
206 206
             return $this->insert($callBeforeSave);
207 207
         }
@@ -226,12 +226,12 @@  discard block
 block discarded – undo
226 226
         $table = new TableGateway(self::getInstance(), Reader::getConfig(self::getInstance())['table']);
227 227
         $resultSet = $table->select($where);
228 228
 
229
-        if($resultSet->count() === 0)
229
+        if ($resultSet->count() === 0)
230 230
             throw new NoDataFoundException();
231 231
 
232 232
         $list = new ArrayList();
233 233
 
234
-        foreach($resultSet->toArray() as $array)
234
+        foreach ($resultSet->toArray() as $array)
235 235
         {
236 236
             $obj = self::getInstance();
237 237
             Populator::populate($obj, $array);
@@ -254,7 +254,7 @@  discard block
 block discarded – undo
254 254
         $this->tableGateway->insert(Extractor::extract($this, $parent));
255 255
         $id = $this->tableGateway->getLastInsertValue();
256 256
 
257
-        if($parent)
257
+        if ($parent)
258 258
             $this->setId($id);
259 259
 
260 260
         return $id;
@@ -288,7 +288,7 @@  discard block
 block discarded – undo
288 288
     {
289 289
         $this->tableGateway = new TableGateway($this);
290 290
 
291
-        if(!empty($this->primaryKey))
291
+        if (!empty($this->primaryKey))
292 292
         {
293 293
             return $this->tableGateway->delete([$this->primaryKey => $this->getId()]);
294 294
         }
Please login to merge, or discard this patch.
Braces   +21 added lines, -18 removed lines patch added patch discarded remove patch
@@ -74,8 +74,9 @@  discard block
 block discarded – undo
74 74
         $this->lazy = $lazy;
75 75
 
76 76
         // Se não for lazy load, carrega o objeto
77
-        if(!$this->lazy)
78
-            $this->populate($this->where);
77
+        if(!$this->lazy) {
78
+                    $this->populate($this->where);
79
+        }
79 80
     }
80 81
 
81 82
     /**
@@ -90,8 +91,9 @@  discard block
 block discarded – undo
90 91
     public function __call($name, $arg)
91 92
     {
92 93
         // Carrega o objeto se por lazy load
93
-        if($this->lazy)
94
-            $this->populate($this->where);
94
+        if($this->lazy) {
95
+                    $this->populate($this->where);
96
+        }
95 97
     }
96 98
 
97 99
     /**
@@ -150,8 +152,9 @@  discard block
 block discarded – undo
150 152
      */
151 153
     private function populateFromId($id)
152 154
     {
153
-        if(empty($this->primaryKey))
154
-            throw new NoPrimaryKeyException();
155
+        if(empty($this->primaryKey)) {
156
+                    throw new NoPrimaryKeyException();
157
+        }
155 158
 
156 159
         $this->populateFromWhere([$this->primaryKey => $id]);
157 160
     }
@@ -169,8 +172,9 @@  discard block
 block discarded – undo
169 172
     {
170 173
         $resultSet = $this->tableGateway->select($where);
171 174
 
172
-        if($resultSet->count() === 0)
173
-            throw new NoDataFoundException();
175
+        if($resultSet->count() === 0) {
176
+                    throw new NoDataFoundException();
177
+        }
174 178
 
175 179
         $array = $resultSet->toArray()[0];
176 180
         Populator::populate($this, $array);
@@ -195,8 +199,7 @@  discard block
 block discarded – undo
195 199
         if($callBeforeSave) {
196 200
             $this->beforeSave();
197 201
             $this->tableGateway = new TableGateway($this, Reader::getConfig($this)['table']);
198
-        }
199
-        else
202
+        } else
200 203
         {
201 204
             $this->tableGateway = new TableGateway($this, Reader::getConfig($this)['parent']);
202 205
         }
@@ -204,8 +207,7 @@  discard block
 block discarded – undo
204 207
         if(empty($this->getId()))
205 208
         {
206 209
             return $this->insert($callBeforeSave);
207
-        }
208
-        else
210
+        } else
209 211
         {
210 212
             return $this->update();
211 213
         }
@@ -226,8 +228,9 @@  discard block
 block discarded – undo
226 228
         $table = new TableGateway(self::getInstance(), Reader::getConfig(self::getInstance())['table']);
227 229
         $resultSet = $table->select($where);
228 230
 
229
-        if($resultSet->count() === 0)
230
-            throw new NoDataFoundException();
231
+        if($resultSet->count() === 0) {
232
+                    throw new NoDataFoundException();
233
+        }
231 234
 
232 235
         $list = new ArrayList();
233 236
 
@@ -254,8 +257,9 @@  discard block
 block discarded – undo
254 257
         $this->tableGateway->insert(Extractor::extract($this, $parent));
255 258
         $id = $this->tableGateway->getLastInsertValue();
256 259
 
257
-        if($parent)
258
-            $this->setId($id);
260
+        if($parent) {
261
+                    $this->setId($id);
262
+        }
259 263
 
260 264
         return $id;
261 265
     }
@@ -291,8 +295,7 @@  discard block
 block discarded – undo
291 295
         if(!empty($this->primaryKey))
292 296
         {
293 297
             return $this->tableGateway->delete([$this->primaryKey => $this->getId()]);
294
-        }
295
-        else
298
+        } else
296 299
         {
297 300
             return $this->tableGateway->delete(Extractor::extract($this));
298 301
         }
Please login to merge, or discard this patch.
src/Silk/Configuration/PropertyConfiguration.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -102,7 +102,7 @@
 block discarded – undo
102 102
         if ($this->value instanceof MappableModelInterface) {
103 103
             return $this->value->getId();
104 104
         }
105
-        else if($this->value instanceof \DateTime){
105
+        else if ($this->value instanceof \DateTime) {
106 106
             return $this->value->format('Y-m-d');
107 107
         }
108 108
         return $this->value;
Please login to merge, or discard this patch.
Braces   +16 added lines, -12 removed lines patch added patch discarded remove patch
@@ -63,17 +63,21 @@  discard block
 block discarded – undo
63 63
         $this->setName($property->getName());
64 64
         $this->setValue($property->getValue($object));
65 65
 
66
-        if (array_key_exists('alias', $config))
67
-            $this->setAlias($config['alias']);
66
+        if (array_key_exists('alias', $config)) {
67
+                    $this->setAlias($config['alias']);
68
+        }
68 69
 
69
-        if (array_key_exists('ignore', $config))
70
-            $this->setIgnore($config['ignore']);
70
+        if (array_key_exists('ignore', $config)) {
71
+                    $this->setIgnore($config['ignore']);
72
+        }
71 73
 
72
-        if (array_key_exists('ignoreIfNull', $config))
73
-            $this->setIgnoreIfNull($config['ignoreIfNull']);
74
+        if (array_key_exists('ignoreIfNull', $config)) {
75
+                    $this->setIgnoreIfNull($config['ignoreIfNull']);
76
+        }
74 77
 
75
-        if (array_key_exists('type', $config))
76
-            $this->setType($config['type']);
78
+        if (array_key_exists('type', $config)) {
79
+                    $this->setType($config['type']);
80
+        }
77 81
     }
78 82
 
79 83
     /**
@@ -101,8 +105,7 @@  discard block
 block discarded – undo
101 105
     {
102 106
         if ($this->value instanceof MappableModelInterface) {
103 107
             return $this->value->getId();
104
-        }
105
-        else if($this->value instanceof \DateTime){
108
+        } else if($this->value instanceof \DateTime){
106 109
             return $this->value->format('Y-m-d');
107 110
         }
108 111
         return $this->value;
@@ -181,8 +184,9 @@  discard block
 block discarded – undo
181 184
      */
182 185
     public function getAlias()
183 186
     {
184
-        if (!empty($this->alias))
185
-            return $this->alias;
187
+        if (!empty($this->alias)) {
188
+                    return $this->alias;
189
+        }
186 190
 
187 191
         return $this->name;
188 192
     }
Please login to merge, or discard this patch.
src/Silk/Database/TableGateway.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -31,8 +31,8 @@
 block discarded – undo
31 31
 
32 32
     protected function updateContext()
33 33
     {
34
-        if(isset($this->config['schema'])){
35
-            $sql = 'USE ' . $this->config['schema'] . ';';
34
+        if (isset($this->config['schema'])) {
35
+            $sql = 'USE '.$this->config['schema'].';';
36 36
             $this->adapter->getDriver()->getConnection()->execute($sql);
37 37
         }
38 38
     }
Please login to merge, or discard this patch.
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -20,8 +20,9 @@
 block discarded – undo
20 20
     {
21 21
         $this->config = Reader::getConfig($object);
22 22
 
23
-        if (!array_key_exists('table', $this->config))
24
-            throw new NoTableFoundException();
23
+        if (!array_key_exists('table', $this->config)) {
24
+                    throw new NoTableFoundException();
25
+        }
25 26
 
26 27
         $this->table = $this->config['table'];
27 28
         $this->adapter = GlobalAdapterFeature::getStaticAdapter();
Please login to merge, or discard this patch.