@@ -124,7 +124,7 @@ |
||
| 124 | 124 | public function getIncomingForeignKeys($tableName) |
| 125 | 125 | { |
| 126 | 126 | $junctionTables = $this->schemaAnalyzer->detectJunctionTables(); |
| 127 | - $junctionTableNames = array_map(function (Table $table) { return $table->getName(); }, $junctionTables); |
|
| 127 | + $junctionTableNames = array_map(function(Table $table) { return $table->getName(); }, $junctionTables); |
|
| 128 | 128 | $childrenRelationships = $this->schemaAnalyzer->getChildrenRelationships($tableName); |
| 129 | 129 | |
| 130 | 130 | $fks = []; |
@@ -65,7 +65,7 @@ discard block |
||
| 65 | 65 | { |
| 66 | 66 | // First, are there many column or only one? |
| 67 | 67 | // If one column, we name the setter after it. Otherwise, we name the setter after the table name |
| 68 | - if (count($this->foreignKey->getLocalColumns()) > 1) { |
|
| 68 | + if (count($this->foreignKey->getLocalColumns())>1) { |
|
| 69 | 69 | $name = TDBMDaoGenerator::toSingular(TDBMDaoGenerator::toCamelCase($this->foreignKey->getForeignTableName())); |
| 70 | 70 | if ($this->alternativeName) { |
| 71 | 71 | $camelizedColumns = array_map(['Mouf\\Database\\TDBM\\Utils\\TDBMDaoGenerator', 'toCamelCase'], $this->foreignKey->getLocalColumns()); |
@@ -78,8 +78,8 @@ discard block |
||
| 78 | 78 | if (strpos(strtolower($column), 'id_') === 0) { |
| 79 | 79 | $column = substr($column, 3); |
| 80 | 80 | } |
| 81 | - if (strrpos(strtolower($column), '_id') === strlen($column) - 3) { |
|
| 82 | - $column = substr($column, 0, strlen($column) - 3); |
|
| 81 | + if (strrpos(strtolower($column), '_id') === strlen($column)-3) { |
|
| 82 | + $column = substr($column, 0, strlen($column)-3); |
|
| 83 | 83 | } |
| 84 | 84 | $name = TDBMDaoGenerator::toCamelCase($column); |
| 85 | 85 | if ($this->alternativeName) { |
@@ -83,7 +83,7 @@ discard block |
||
| 83 | 83 | |
| 84 | 84 | private function toIndex($offset) |
| 85 | 85 | { |
| 86 | - if ($offset < 0 || filter_var($offset, FILTER_VALIDATE_INT) === false) { |
|
| 86 | + if ($offset<0 || filter_var($offset, FILTER_VALIDATE_INT) === false) { |
|
| 87 | 87 | throw new TDBMInvalidOffsetException('Trying to access result set using offset "'.$offset.'". An offset must be a positive integer.'); |
| 88 | 88 | } |
| 89 | 89 | if ($this->statement === null) { |
@@ -100,7 +100,7 @@ discard block |
||
| 100 | 100 | public function next() |
| 101 | 101 | { |
| 102 | 102 | // Let's overload the next() method to store the result. |
| 103 | - if (isset($this->results[$this->key + 1])) { |
|
| 103 | + if (isset($this->results[$this->key+1])) { |
|
| 104 | 104 | ++$this->key; |
| 105 | 105 | $this->current = $this->results[$this->key]; |
| 106 | 106 | } else { |
@@ -112,7 +112,7 @@ discard block |
||
| 112 | 112 | */ |
| 113 | 113 | public function getCurrentPage() |
| 114 | 114 | { |
| 115 | - return floor($this->offset / $this->limit) + 1; |
|
| 115 | + return floor($this->offset/$this->limit)+1; |
|
| 116 | 116 | } |
| 117 | 117 | |
| 118 | 118 | /** |
@@ -251,7 +251,7 @@ discard block |
||
| 251 | 251 | */ |
| 252 | 252 | public function jsonSerialize() |
| 253 | 253 | { |
| 254 | - return array_map(function (AbstractTDBMObject $item) { |
|
| 254 | + return array_map(function(AbstractTDBMObject $item) { |
|
| 255 | 255 | return $item->jsonSerialize(); |
| 256 | 256 | }, $this->toArray()); |
| 257 | 257 | } |
@@ -186,7 +186,7 @@ discard block |
||
| 186 | 186 | */ |
| 187 | 187 | private function checkTableName($tableName = null) { |
| 188 | 188 | if ($tableName === null) { |
| 189 | - if (count($this->dbRows) > 1) { |
|
| 189 | + if (count($this->dbRows)>1) { |
|
| 190 | 190 | throw new TDBMException('This object is based on several tables. You must specify which table you are retrieving data from.'); |
| 191 | 191 | } elseif (count($this->dbRows) === 1) { |
| 192 | 192 | $tableName = array_keys($this->dbRows)[0]; |
@@ -213,7 +213,7 @@ discard block |
||
| 213 | 213 | protected function set($var, $value, $tableName = null) |
| 214 | 214 | { |
| 215 | 215 | if ($tableName === null) { |
| 216 | - if (count($this->dbRows) > 1) { |
|
| 216 | + if (count($this->dbRows)>1) { |
|
| 217 | 217 | throw new TDBMException('This object is based on several tables. You must specify which table you are retrieving data from.'); |
| 218 | 218 | } elseif (count($this->dbRows) === 1) { |
| 219 | 219 | $tableName = array_keys($this->dbRows)[0]; |
@@ -239,7 +239,7 @@ discard block |
||
| 239 | 239 | protected function setRef($foreignKeyName, AbstractTDBMObject $bean, $tableName = null) |
| 240 | 240 | { |
| 241 | 241 | if ($tableName === null) { |
| 242 | - if (count($this->dbRows) > 1) { |
|
| 242 | + if (count($this->dbRows)>1) { |
|
| 243 | 243 | throw new TDBMException('This object is based on several tables. You must specify which table you are retrieving data from.'); |
| 244 | 244 | } elseif (count($this->dbRows) === 1) { |
| 245 | 245 | $tableName = array_keys($this->dbRows)[0]; |
@@ -77,11 +77,11 @@ discard block |
||
| 77 | 77 | |
| 78 | 78 | // Remove all beans and daos from junction tables |
| 79 | 79 | $junctionTables = $this->schemaAnalyzer->detectJunctionTables(); |
| 80 | - $junctionTableNames = array_map(function (Table $table) { |
|
| 80 | + $junctionTableNames = array_map(function(Table $table) { |
|
| 81 | 81 | return $table->getName(); |
| 82 | 82 | }, $junctionTables); |
| 83 | 83 | |
| 84 | - $tableList = array_filter($tableList, function (Table $table) use ($junctionTableNames) { |
|
| 84 | + $tableList = array_filter($tableList, function(Table $table) use ($junctionTableNames) { |
|
| 85 | 85 | return !in_array($table->getName(), $junctionTableNames); |
| 86 | 86 | }); |
| 87 | 87 | |
@@ -94,7 +94,7 @@ discard block |
||
| 94 | 94 | // Ok, let's return the list of all tables. |
| 95 | 95 | // These will be used by the calling script to create Mouf instances. |
| 96 | 96 | |
| 97 | - return array_map(function (Table $table) { return $table->getName(); }, $tableList); |
|
| 97 | + return array_map(function(Table $table) { return $table->getName(); }, $tableList); |
|
| 98 | 98 | } |
| 99 | 99 | |
| 100 | 100 | /** |
@@ -287,7 +287,7 @@ discard block |
||
| 287 | 287 | $usedBeans[] = $beanClassName; |
| 288 | 288 | // Let's suppress duplicates in used beans (if any) |
| 289 | 289 | $usedBeans = array_flip(array_flip($usedBeans)); |
| 290 | - $useStatements = array_map(function ($usedBean) { |
|
| 290 | + $useStatements = array_map(function($usedBean) { |
|
| 291 | 291 | return "use $usedBean;\n"; |
| 292 | 292 | }, $usedBeans); |
| 293 | 293 | |
@@ -587,7 +587,7 @@ discard block |
||
| 587 | 587 | $pos = strpos($str, ' '); |
| 588 | 588 | } |
| 589 | 589 | $before = substr($str, 0, $pos); |
| 590 | - $after = substr($str, $pos + 1); |
|
| 590 | + $after = substr($str, $pos+1); |
|
| 591 | 591 | $str = $before.strtoupper(substr($after, 0, 1)).substr($after, 1); |
| 592 | 592 | } |
| 593 | 593 | |
@@ -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 | |
@@ -291,7 +291,7 @@ discard block |
||
| 291 | 291 | $fksByMethodName = []; |
| 292 | 292 | |
| 293 | 293 | foreach ($fksByTable as $tableName => $fksForTable) { |
| 294 | - if (count($fksForTable) > 1) { |
|
| 294 | + if (count($fksForTable)>1) { |
|
| 295 | 295 | foreach ($fksForTable as $fk) { |
| 296 | 296 | $methodName = 'get'.TDBMDaoGenerator::toCamelCase($fk->getLocalTableName()).'By'; |
| 297 | 297 | |
@@ -405,7 +405,7 @@ discard block |
||
| 405 | 405 | |
| 406 | 406 | $finalDescs = []; |
| 407 | 407 | foreach ($descs as $descArray) { |
| 408 | - if (count($descArray) > 1) { |
|
| 408 | + if (count($descArray)>1) { |
|
| 409 | 409 | foreach ($descArray as $desc) { |
| 410 | 410 | $desc['name'] = TDBMDaoGenerator::toCamelCase($desc['remoteFK']->getForeignTableName()).'By'.TDBMDaoGenerator::toCamelCase($desc['table']->getName()); |
| 411 | 411 | $finalDescs[] = $desc; |
@@ -578,7 +578,7 @@ discard block |
||
| 578 | 578 | |
| 579 | 579 | $classes = $this->generateExtendsAndUseStatements($parentFk); |
| 580 | 580 | |
| 581 | - $uses = array_map(function ($className) use ($beannamespace) { return 'use '.$beannamespace.'\\'.$className.";\n"; }, $classes); |
|
| 581 | + $uses = array_map(function($className) use ($beannamespace) { return 'use '.$beannamespace.'\\'.$className.";\n"; }, $classes); |
|
| 582 | 582 | $use = implode('', $uses); |
| 583 | 583 | |
| 584 | 584 | if ($parentFk !== null) { |
@@ -245,7 +245,7 @@ |
||
| 245 | 245 | */ |
| 246 | 246 | public function jsonSerialize($stopRecursion = false) |
| 247 | 247 | { |
| 248 | - return array_map(function (AbstractTDBMObject $item) use ($stopRecursion) { |
|
| 248 | + return array_map(function(AbstractTDBMObject $item) use ($stopRecursion) { |
|
| 249 | 249 | return $item->jsonSerialize($stopRecursion); |
| 250 | 250 | }, $this->toArray()); |
| 251 | 251 | } |
@@ -374,11 +374,11 @@ |
||
| 374 | 374 | $refDbRows = $reference->_getDbRows(); |
| 375 | 375 | $firstRefDbRow = reset($refDbRows); |
| 376 | 376 | $pkValues = array_values($firstRefDbRow->_getPrimaryKeys()); |
| 377 | - for ($i = 0, $count = count($localColumns); $i < $count; ++$i) { |
|
| 377 | + for ($i = 0, $count = count($localColumns); $i<$count; ++$i) { |
|
| 378 | 378 | $dbRow[$localColumns[$i]] = $pkValues[$i]; |
| 379 | 379 | } |
| 380 | 380 | } else { |
| 381 | - for ($i = 0, $count = count($localColumns); $i < $count; ++$i) { |
|
| 381 | + for ($i = 0, $count = count($localColumns); $i<$count; ++$i) { |
|
| 382 | 382 | $dbRow[$localColumns[$i]] = null; |
| 383 | 383 | } |
| 384 | 384 | } |