@@ -1064,7 +1064,7 @@ discard block |
||
1064 | 1064 | sort($tables); |
1065 | 1065 | |
1066 | 1066 | return $this->fromCache($this->cachePrefix.'_linkbetweeninheritedtables_'.implode('__split__', $tables), |
1067 | - function () use ($tables) { |
|
1067 | + function() use ($tables) { |
|
1068 | 1068 | return $this->_getLinkBetweenInheritedTablesWithoutCache($tables); |
1069 | 1069 | }); |
1070 | 1070 | } |
@@ -1111,7 +1111,7 @@ discard block |
||
1111 | 1111 | */ |
1112 | 1112 | public function _getRelatedTablesByInheritance($table) |
1113 | 1113 | { |
1114 | - return $this->fromCache($this->cachePrefix.'_relatedtables_'.$table, function () use ($table) { |
|
1114 | + return $this->fromCache($this->cachePrefix.'_relatedtables_'.$table, function() use ($table) { |
|
1115 | 1115 | return $this->_getRelatedTablesByInheritanceWithoutCache($table); |
1116 | 1116 | }); |
1117 | 1117 | } |
@@ -1358,7 +1358,7 @@ discard block |
||
1358 | 1358 | $objects = $this->findObjects($mainTable, $filter, $parameters, null, $additionalTablesFetch, self::MODE_ARRAY, $className); |
1359 | 1359 | $page = $objects->take(0, 2); |
1360 | 1360 | $count = $page->count(); |
1361 | - if ($count > 1) { |
|
1361 | + if ($count>1) { |
|
1362 | 1362 | throw new DuplicateRowException("Error while querying an object for table '$mainTable': More than 1 row have been returned, but we should have received at most one."); |
1363 | 1363 | } elseif ($count === 0) { |
1364 | 1364 | return; |
@@ -1385,7 +1385,7 @@ discard block |
||
1385 | 1385 | $objects = $this->findObjectsFromSql($mainTable, $from, $filter, $parameters, null, self::MODE_ARRAY, $className); |
1386 | 1386 | $page = $objects->take(0, 2); |
1387 | 1387 | $count = $page->count(); |
1388 | - if ($count > 1) { |
|
1388 | + if ($count>1) { |
|
1389 | 1389 | throw new DuplicateRowException("Error while querying an object for table '$mainTable': More than 1 row have been returned, but we should have received at most one."); |
1390 | 1390 | } elseif ($count === 0) { |
1391 | 1391 | return; |
@@ -1503,7 +1503,7 @@ discard block |
||
1503 | 1503 | $remoteTable = $remoteFk->getForeignTableName(); |
1504 | 1504 | |
1505 | 1505 | $primaryKeys = $this->getPrimaryKeyValues($bean); |
1506 | - $columnNames = array_map(function ($name) use ($pivotTableName) { |
|
1506 | + $columnNames = array_map(function($name) use ($pivotTableName) { |
|
1507 | 1507 | return $pivotTableName.'.'.$name; |
1508 | 1508 | }, $localFk->getLocalColumns()); |
1509 | 1509 | |
@@ -1526,7 +1526,7 @@ discard block |
||
1526 | 1526 | $table1 = $fks[0]->getForeignTableName(); |
1527 | 1527 | $table2 = $fks[1]->getForeignTableName(); |
1528 | 1528 | |
1529 | - $beanTables = array_map(function (DbRow $dbRow) { |
|
1529 | + $beanTables = array_map(function(DbRow $dbRow) { |
|
1530 | 1530 | return $dbRow->_getDbTableName(); |
1531 | 1531 | }, $bean->_getDbRows()); |
1532 | 1532 | |
@@ -1584,7 +1584,7 @@ discard block |
||
1584 | 1584 | { |
1585 | 1585 | if (!isset($typesForTable[$tableName])) { |
1586 | 1586 | $columns = $this->tdbmSchemaAnalyzer->getSchema()->getTable($tableName)->getColumns(); |
1587 | - $typesForTable[$tableName] = array_map(function (Column $column) { |
|
1587 | + $typesForTable[$tableName] = array_map(function(Column $column) { |
|
1588 | 1588 | return $column->getType(); |
1589 | 1589 | }, $columns); |
1590 | 1590 | } |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types=1); |
|
3 | +declare(strict_types = 1); |
|
4 | 4 | |
5 | 5 | namespace Mouf\Database\TDBM; |
6 | 6 |
@@ -55,19 +55,19 @@ discard block |
||
55 | 55 | ]; |
56 | 56 | } |
57 | 57 | |
58 | - $sql = 'SELECT DISTINCT '.implode(', ', array_map(function ($columnDesc) { |
|
58 | + $sql = 'SELECT DISTINCT '.implode(', ', array_map(function($columnDesc) { |
|
59 | 59 | return $this->tdbmService->getConnection()->quoteIdentifier($this->mainTable).'.'.$this->tdbmService->getConnection()->quoteIdentifier($columnDesc['column']); |
60 | 60 | }, $columnDescList)).' FROM '.$this->from; |
61 | 61 | |
62 | - if (count($allFetchedTables) > 1) { |
|
62 | + if (count($allFetchedTables)>1) { |
|
63 | 63 | list($columnDescList, $columnsList, $orderString) = $this->getColumnsList($this->mainTable, [], $this->orderBy); |
64 | 64 | } elseif ($this->orderBy) { |
65 | - list(, , $orderString) = $this->getColumnsList($this->mainTable, [], $this->orderBy); |
|
65 | + list(,, $orderString) = $this->getColumnsList($this->mainTable, [], $this->orderBy); |
|
66 | 66 | } |
67 | 67 | |
68 | 68 | // Let's compute the COUNT. |
69 | 69 | $pkColumnNames = $this->schema->getTable($this->mainTable)->getPrimaryKeyColumns(); |
70 | - $pkColumnNames = array_map(function ($pkColumn) { |
|
70 | + $pkColumnNames = array_map(function($pkColumn) { |
|
71 | 71 | return $this->tdbmService->getConnection()->quoteIdentifier($this->mainTable).'.'.$this->tdbmService->getConnection()->quoteIdentifier($pkColumn); |
72 | 72 | }, $pkColumnNames); |
73 | 73 | |
@@ -128,7 +128,7 @@ discard block |
||
128 | 128 | */ |
129 | 129 | private function getParentRelationshipForeignKeys($tableName) |
130 | 130 | { |
131 | - return $this->fromCache($this->cachePrefix.'_parentrelationshipfks_'.$tableName, function () use ($tableName) { |
|
131 | + return $this->fromCache($this->cachePrefix.'_parentrelationshipfks_'.$tableName, function() use ($tableName) { |
|
132 | 132 | return $this->getParentRelationshipForeignKeysWithoutCache($tableName); |
133 | 133 | }); |
134 | 134 | } |
@@ -157,7 +157,7 @@ discard block |
||
157 | 157 | */ |
158 | 158 | private function getChildrenRelationshipForeignKeys(string $tableName) : array |
159 | 159 | { |
160 | - return $this->fromCache($this->cachePrefix.'_childrenrelationshipfks_'.$tableName, function () use ($tableName) { |
|
160 | + return $this->fromCache($this->cachePrefix.'_childrenrelationshipfks_'.$tableName, function() use ($tableName) { |
|
161 | 161 | return $this->getChildrenRelationshipForeignKeysWithoutCache($tableName); |
162 | 162 | }); |
163 | 163 | } |
@@ -172,7 +172,7 @@ discard block |
||
172 | 172 | $children = $this->schemaAnalyzer->getChildrenRelationships($tableName); |
173 | 173 | |
174 | 174 | if (!empty($children)) { |
175 | - $fksTables = array_map(function (ForeignKeyConstraint $fk) { |
|
175 | + $fksTables = array_map(function(ForeignKeyConstraint $fk) { |
|
176 | 176 | return $this->getChildrenRelationshipForeignKeys($fk->getLocalTableName()); |
177 | 177 | }, $children); |
178 | 178 |
@@ -92,7 +92,7 @@ discard block |
||
92 | 92 | */ |
93 | 93 | public function getConstructorProperties() |
94 | 94 | { |
95 | - $constructorProperties = array_filter($this->beanPropertyDescriptors, function (AbstractBeanPropertyDescriptor $property) { |
|
95 | + $constructorProperties = array_filter($this->beanPropertyDescriptors, function(AbstractBeanPropertyDescriptor $property) { |
|
96 | 96 | return $property->isCompulsory(); |
97 | 97 | }); |
98 | 98 | |
@@ -107,7 +107,7 @@ discard block |
||
107 | 107 | public function getPropertiesWithDefault() |
108 | 108 | { |
109 | 109 | $properties = $this->getPropertiesForTable($this->table); |
110 | - $defaultProperties = array_filter($properties, function (AbstractBeanPropertyDescriptor $property) { |
|
110 | + $defaultProperties = array_filter($properties, function(AbstractBeanPropertyDescriptor $property) { |
|
111 | 111 | return $property->hasDefault(); |
112 | 112 | }); |
113 | 113 | |
@@ -121,7 +121,7 @@ discard block |
||
121 | 121 | */ |
122 | 122 | public function getExposedProperties() |
123 | 123 | { |
124 | - $exposedProperties = array_filter($this->beanPropertyDescriptors, function (AbstractBeanPropertyDescriptor $property) { |
|
124 | + $exposedProperties = array_filter($this->beanPropertyDescriptors, function(AbstractBeanPropertyDescriptor $property) { |
|
125 | 125 | return $property->getTable()->getName() == $this->table->getName(); |
126 | 126 | }); |
127 | 127 | |
@@ -331,7 +331,7 @@ discard block |
||
331 | 331 | } |
332 | 332 | |
333 | 333 | foreach ($descriptorsByMethodName as $descriptorsForMethodName) { |
334 | - if (count($descriptorsForMethodName) > 1) { |
|
334 | + if (count($descriptorsForMethodName)>1) { |
|
335 | 335 | foreach ($descriptorsForMethodName as $descriptor) { |
336 | 336 | $descriptor->useAlternativeName(); |
337 | 337 | } |
@@ -424,7 +424,7 @@ discard block |
||
424 | 424 | |
425 | 425 | $classes = $this->generateExtendsAndUseStatements($parentFk); |
426 | 426 | |
427 | - $uses = array_map(function ($className) use ($beannamespace) { |
|
427 | + $uses = array_map(function($className) use ($beannamespace) { |
|
428 | 428 | return 'use '.$beannamespace.'\\'.$className.";\n"; |
429 | 429 | }, $classes); |
430 | 430 | $use = implode('', $uses); |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types=1); |
|
3 | +declare(strict_types = 1); |
|
4 | 4 | |
5 | 5 | namespace Mouf\Database\TDBM; |
6 | 6 |