@@ -83,7 +83,7 @@ discard block |
||
83 | 83 | ->from(self::TABLE); |
84 | 84 | |
85 | 85 | foreach ($where as $column => $value) { |
86 | - $queryBuilder->andWhere($column . ' = ' . $queryBuilder->createNamedParameter($value)); |
|
86 | + $queryBuilder->andWhere($column . ' = ' . $queryBuilder->createNamedParameter($value)); |
|
87 | 87 | } |
88 | 88 | |
89 | 89 | foreach ($order as $field => $direction) { |
@@ -125,7 +125,7 @@ discard block |
||
125 | 125 | |
126 | 126 | if (count($where) > 0) { |
127 | 127 | foreach ($where as $column => $value) { |
128 | - $queryBuilder->andWhere($column . ' = ' . $queryBuilder->createNamedParameter($value)); |
|
128 | + $queryBuilder->andWhere($column . ' = ' . $queryBuilder->createNamedParameter($value)); |
|
129 | 129 | } |
130 | 130 | } |
131 | 131 | |
@@ -192,7 +192,7 @@ discard block |
||
192 | 192 | $databaseArray |
193 | 193 | ); |
194 | 194 | |
195 | - $entity->id = (int) $this->connection->lastInsertId(); |
|
195 | + $entity->id = (int)$this->connection->lastInsertId(); |
|
196 | 196 | |
197 | 197 | return $entity; |
198 | 198 | } |
@@ -220,7 +220,7 @@ discard block |
||
220 | 220 | ['id' => $entity->id] |
221 | 221 | ); |
222 | 222 | |
223 | - $entity->id = (int) $this->connection->lastInsertId(); |
|
223 | + $entity->id = (int)$this->connection->lastInsertId(); |
|
224 | 224 | |
225 | 225 | return $entity; |
226 | 226 | } |
@@ -1,4 +1,4 @@ |
||
1 | 1 | <?php return array ( |
2 | - 'version_number' => 1684, |
|
3 | - 'git_revision' => '8b1f529bf3f46aaad59ca83f0f95b37c20e71fa0', |
|
2 | + 'version_number' => 1684, |
|
3 | + 'git_revision' => '8b1f529bf3f46aaad59ca83f0f95b37c20e71fa0', |
|
4 | 4 | ); |
5 | 5 | \ No newline at end of file |
@@ -1,4 +1,4 @@ |
||
1 | -<?php return array ( |
|
1 | +<?php return array( |
|
2 | 2 | 'version_number' => 1684, |
3 | 3 | 'git_revision' => '8b1f529bf3f46aaad59ca83f0f95b37c20e71fa0', |
4 | 4 | ); |
5 | 5 | \ No newline at end of file |
@@ -101,7 +101,7 @@ discard block |
||
101 | 101 | */ |
102 | 102 | foreach ($rii as $file) { |
103 | 103 | |
104 | - if ($file->isDir() || $file->getExtension() !== 'js'){ |
|
104 | + if ($file->isDir() || $file->getExtension() !== 'js') { |
|
105 | 105 | continue; |
106 | 106 | } |
107 | 107 | |
@@ -129,7 +129,7 @@ discard block |
||
129 | 129 | $scss = new Compiler(); |
130 | 130 | $scss->setIgnoreErrors(true); |
131 | 131 | $scss->addImportPath($applicationScssPath); |
132 | - $scss->addImportPath(function ($path) use ($projectDir) { |
|
132 | + $scss->addImportPath(function($path) use ($projectDir) { |
|
133 | 133 | //Check for tilde as this refers to the node_modules dir |
134 | 134 | if (strpos($path, '~') === 0) { |
135 | 135 | $path = str_replace( |