@@ -85,7 +85,7 @@ |
||
85 | 85 | * @param string $columnName |
86 | 86 | * @param string $value |
87 | 87 | */ |
88 | - public function __construct($tableName=null, $columnName=null, $value=null) { |
|
88 | + public function __construct($tableName = null, $columnName = null, $value = null) { |
|
89 | 89 | $this->tableName = $tableName; |
90 | 90 | $this->columnName = $columnName; |
91 | 91 | $this->value = $value; |
@@ -85,7 +85,7 @@ |
||
85 | 85 | * @param string $columnName |
86 | 86 | * @param string $value |
87 | 87 | */ |
88 | - public function __construct($tableName=null, $columnName=null, $value=null) { |
|
88 | + public function __construct($tableName = null, $columnName = null, $value = null) { |
|
89 | 89 | $this->tableName = $tableName; |
90 | 90 | $this->columnName = $columnName; |
91 | 91 | $this->value = $value; |
@@ -85,7 +85,7 @@ |
||
85 | 85 | * @param string $columnName |
86 | 86 | * @param string $value |
87 | 87 | */ |
88 | - public function __construct($tableName=null, $columnName=null, $value=null) { |
|
88 | + public function __construct($tableName = null, $columnName = null, $value = null) { |
|
89 | 89 | $this->tableName = $tableName; |
90 | 90 | $this->columnName = $columnName; |
91 | 91 | $this->value = $value; |
@@ -85,7 +85,7 @@ |
||
85 | 85 | * @param string $columnName |
86 | 86 | * @param string $value |
87 | 87 | */ |
88 | - public function __construct($tableName=null, $columnName=null, $value=null) { |
|
88 | + public function __construct($tableName = null, $columnName = null, $value = null) { |
|
89 | 89 | $this->tableName = $tableName; |
90 | 90 | $this->columnName = $columnName; |
91 | 91 | $this->value = $value; |
@@ -29,7 +29,7 @@ |
||
29 | 29 | <div class="control-group"> |
30 | 30 | <label class="control-label">Store dates / timestamps in UTC:</label> |
31 | 31 | <div class="controls"> |
32 | - <input type="checkbox" name="storeInUtc" value="1" <?php echo $this->storeInUtc?'checked="checked"':"" ?>></input> |
|
32 | + <input type="checkbox" name="storeInUtc" value="1" <?php echo $this->storeInUtc ? 'checked="checked"' : "" ?>></input> |
|
33 | 33 | <span class="help-block">Select this option if you want timestamps to be stored in UTC. |
34 | 34 | If your application supports several time zones, you should select this option to store all dates in |
35 | 35 | the same time zone.</span> |
@@ -985,7 +985,7 @@ discard block |
||
985 | 985 | * This is used internally by TDBM to add an object to the list of objects that have been |
986 | 986 | * created/updated but not saved yet. |
987 | 987 | * |
988 | - * @param AbstractTDBMObject $myObject |
|
988 | + * @param DbRow $myObject |
|
989 | 989 | */ |
990 | 990 | public function _addToToSaveObjectList(DbRow $myObject) { |
991 | 991 | $this->toSaveObjects[] = $myObject; |
@@ -1621,7 +1621,7 @@ discard block |
||
1621 | 1621 | } |
1622 | 1622 | |
1623 | 1623 | /** |
1624 | - * @param $table |
|
1624 | + * @param string $table |
|
1625 | 1625 | * @param array $primaryKeys |
1626 | 1626 | * @param array $additionalTablesFetch |
1627 | 1627 | * @param bool $lazy Whether to perform lazy loading on this object or not. |
@@ -1778,7 +1778,7 @@ discard block |
||
1778 | 1778 | /** |
1779 | 1779 | * @param $pivotTableName |
1780 | 1780 | * @param AbstractTDBMObject $bean |
1781 | - * @return AbstractTDBMObject[] |
|
1781 | + * @return ResultIterator |
|
1782 | 1782 | */ |
1783 | 1783 | public function _getRelatedBeans($pivotTableName, AbstractTDBMObject $bean) { |
1784 | 1784 |
@@ -22,16 +22,11 @@ |
||
22 | 22 | use Doctrine\Common\Cache\Cache; |
23 | 23 | use Doctrine\Common\Cache\VoidCache; |
24 | 24 | use Doctrine\DBAL\Connection; |
25 | -use Doctrine\DBAL\DBALException; |
|
26 | -use Doctrine\DBAL\Schema\Column; |
|
27 | 25 | use Doctrine\DBAL\Schema\ForeignKeyConstraint; |
28 | -use Doctrine\DBAL\Schema\Schema; |
|
29 | 26 | use Mouf\Database\MagicQuery; |
30 | 27 | use Mouf\Database\SchemaAnalyzer\SchemaAnalyzer; |
31 | 28 | use Mouf\Database\TDBM\Filters\OrderBySQLString; |
32 | 29 | use Mouf\Database\TDBM\Utils\TDBMDaoGenerator; |
33 | -use Mouf\Utils\Cache\CacheInterface; |
|
34 | -use SQLParser\Node\ColRef; |
|
35 | 30 | |
36 | 31 | /** |
37 | 32 | * The TDBMService class is the main TDBM class. It provides methods to retrieve TDBMObject instances |
@@ -699,9 +699,9 @@ discard block |
||
699 | 699 | // 4-2, let's take all the objects out of the orderby bag, and let's make objects from them |
700 | 700 | $orderby_bag2 = array(); |
701 | 701 | foreach ($orderby_bag as $thing) { |
702 | - if (is_a($thing,'Mouf\\Database\\TDBM\\Filters\\OrderBySQLString')) { |
|
702 | + if (is_a($thing, 'Mouf\\Database\\TDBM\\Filters\\OrderBySQLString')) { |
|
703 | 703 | $orderby_bag2[] = $thing; |
704 | - } elseif (is_a($thing,'Mouf\\Database\\TDBM\\Filters\\OrderByColumn')) { |
|
704 | + } elseif (is_a($thing, 'Mouf\\Database\\TDBM\\Filters\\OrderByColumn')) { |
|
705 | 705 | $orderby_bag2[] = $thing; |
706 | 706 | } elseif (is_string($thing)) { |
707 | 707 | $orderby_bag2[] = new OrderBySQLString($thing); |
@@ -1204,7 +1204,7 @@ discard block |
||
1204 | 1204 | $schemaAnalyzer = $this->schemaAnalyzer; |
1205 | 1205 | |
1206 | 1206 | foreach ($tables as $currentTable) { |
1207 | - $allParents = [ $currentTable ]; |
|
1207 | + $allParents = [$currentTable]; |
|
1208 | 1208 | $currentFk = null; |
1209 | 1209 | while ($currentFk = $schemaAnalyzer->getParentRelationship($currentTable)) { |
1210 | 1210 | $currentTable = $currentFk->getForeignTableName(); |
@@ -1246,7 +1246,7 @@ discard block |
||
1246 | 1246 | // Let's scan the parent tables |
1247 | 1247 | $currentTable = $table; |
1248 | 1248 | |
1249 | - $parentTables = [ ]; |
|
1249 | + $parentTables = []; |
|
1250 | 1250 | |
1251 | 1251 | // Get parent relationship |
1252 | 1252 | while ($currentFk = $schemaAnalyzer->getParentRelationship($currentTable)) { |
@@ -1336,7 +1336,7 @@ discard block |
||
1336 | 1336 | * @return ResultIterator An object representing an array of results. |
1337 | 1337 | * @throws TDBMException |
1338 | 1338 | */ |
1339 | - public function findObjects($mainTable, $filter=null, array $parameters = array(), $orderString=null, array $additionalTablesFetch = array(), $mode = null, $className=null) { |
|
1339 | + public function findObjects($mainTable, $filter = null, array $parameters = array(), $orderString = null, array $additionalTablesFetch = array(), $mode = null, $className = null) { |
|
1340 | 1340 | // $mainTable is not secured in MagicJoin, let's add a bit of security to avoid SQL injection. |
1341 | 1341 | if (!preg_match('/^[a-zA-Z_][a-zA-Z0-9_]*$/', $mainTable)) { |
1342 | 1342 | throw new TDBMException(sprintf("Invalid table name: '%s'", $mainTable)); |
@@ -1405,7 +1405,7 @@ discard block |
||
1405 | 1405 | throw new TDBMException("Unknown fetch mode: '".$this->mode."'"); |
1406 | 1406 | } |
1407 | 1407 | |
1408 | - $mode = $mode?:$this->mode; |
|
1408 | + $mode = $mode ?: $this->mode; |
|
1409 | 1409 | |
1410 | 1410 | return new ResultIterator($sql, $countSql, $parameters, $columnDescList, $this->objectStorage, $className, $this, $this->magicQuery, $mode); |
1411 | 1411 | } |
@@ -1419,7 +1419,7 @@ discard block |
||
1419 | 1419 | * @return AbstractTDBMObject |
1420 | 1420 | * @throws TDBMException |
1421 | 1421 | */ |
1422 | - public function findObjectByPk($table, array $primaryKeys, array $additionalTablesFetch = array(), $lazy = false, $className=null) { |
|
1422 | + public function findObjectByPk($table, array $primaryKeys, array $additionalTablesFetch = array(), $lazy = false, $className = null) { |
|
1423 | 1423 | $primaryKeys = $this->_getPrimaryKeysFromObjectData($table, $primaryKeys); |
1424 | 1424 | $hash = $this->getObjectHash($primaryKeys); |
1425 | 1425 | |
@@ -1439,7 +1439,7 @@ discard block |
||
1439 | 1439 | // Only allowed if no inheritance. |
1440 | 1440 | if (count($tables) === 1) { |
1441 | 1441 | if ($className === null) { |
1442 | - $className = isset($this->tableToBeanMap[$table])?$this->tableToBeanMap[$table]:"Mouf\\Database\\TDBM\\TDBMObject"; |
|
1442 | + $className = isset($this->tableToBeanMap[$table]) ? $this->tableToBeanMap[$table] : "Mouf\\Database\\TDBM\\TDBMObject"; |
|
1443 | 1443 | } |
1444 | 1444 | |
1445 | 1445 | // Let's construct the bean |
@@ -1468,11 +1468,11 @@ discard block |
||
1468 | 1468 | * @return AbstractTDBMObject|null The object we want, or null if no object matches the filters. |
1469 | 1469 | * @throws TDBMException |
1470 | 1470 | */ |
1471 | - public function findObject($mainTable, $filterString=null, array $parameters = array(), array $additionalTablesFetch = array(), $className = null) { |
|
1471 | + public function findObject($mainTable, $filterString = null, array $parameters = array(), array $additionalTablesFetch = array(), $className = null) { |
|
1472 | 1472 | $objects = $this->findObjects($mainTable, $filterString, $parameters, null, $additionalTablesFetch, self::MODE_ARRAY, $className); |
1473 | 1473 | $page = $objects->take(0, 2); |
1474 | 1474 | $count = $page->count(); |
1475 | - if ($count > 1) { |
|
1475 | + if ($count>1) { |
|
1476 | 1476 | 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."); |
1477 | 1477 | } elseif ($count === 0) { |
1478 | 1478 | return null; |
@@ -1492,7 +1492,7 @@ discard block |
||
1492 | 1492 | * @return AbstractTDBMObject The object we want |
1493 | 1493 | * @throws TDBMException |
1494 | 1494 | */ |
1495 | - public function findObjectOrFail($mainTable, $filterString=null, array $parameters = array(), array $additionalTablesFetch = array(), $className = null) { |
|
1495 | + public function findObjectOrFail($mainTable, $filterString = null, array $parameters = array(), array $additionalTablesFetch = array(), $className = null) { |
|
1496 | 1496 | $bean = $this->findObject($mainTable, $filterString, $parameters, $additionalTablesFetch, $className); |
1497 | 1497 | if ($bean === null) { |
1498 | 1498 | throw new NoBeanFoundException("No result found for query on table '".$mainTable."'"); |
@@ -693,8 +693,9 @@ |
||
693 | 693 | // Fourth, let's apply the same steps to the orderby_bag |
694 | 694 | // 4-1 orderby_bag should be an array, if it is a singleton, let's put it in an array. |
695 | 695 | |
696 | - if (!is_array($orderby_bag)) |
|
697 | - $orderby_bag = array($orderby_bag); |
|
696 | + if (!is_array($orderby_bag)) { |
|
697 | + $orderby_bag = array($orderby_bag); |
|
698 | + } |
|
698 | 699 | |
699 | 700 | // 4-2, let's take all the objects out of the orderby bag, and let's make objects from them |
700 | 701 | $orderby_bag2 = array(); |
@@ -382,7 +382,7 @@ discard block |
||
382 | 382 | case TDBMObjectStateEnum::STATE_DETACHED: |
383 | 383 | throw new TDBMInvalidOperationException('Cannot delete a detached object'); |
384 | 384 | case TDBMObjectStateEnum::STATE_NEW: |
385 | - $this->deleteManyToManyRelationships($object); |
|
385 | + $this->deleteManyToManyRelationships($object); |
|
386 | 386 | foreach ($object->_getDbRows() as $dbRow) { |
387 | 387 | $this->removeFromToSaveObjectList($dbRow); |
388 | 388 | } |
@@ -393,7 +393,7 @@ discard block |
||
393 | 393 | } |
394 | 394 | case TDBMObjectStateEnum::STATE_NOT_LOADED: |
395 | 395 | case TDBMObjectStateEnum::STATE_LOADED: |
396 | - $this->deleteManyToManyRelationships($object); |
|
396 | + $this->deleteManyToManyRelationships($object); |
|
397 | 397 | // Let's delete db rows, in reverse order. |
398 | 398 | foreach (array_reverse($object->_getDbRows()) as $dbRow) { |
399 | 399 | $tableName = $dbRow->_getDbTableName(); |
@@ -411,63 +411,63 @@ discard block |
||
411 | 411 | $object->_setStatus(TDBMObjectStateEnum::STATE_DELETED); |
412 | 412 | } |
413 | 413 | |
414 | - /** |
|
415 | - * Removes all many to many relationships for this object. |
|
416 | - * @param AbstractTDBMObject $object |
|
417 | - */ |
|
418 | - private function deleteManyToManyRelationships(AbstractTDBMObject $object) { |
|
419 | - foreach ($object->_getDbRows() as $tableName => $dbRow) { |
|
420 | - $pivotTables = $this->tdbmSchemaAnalyzer->getPivotTableLinkedToTable($tableName); |
|
421 | - foreach ($pivotTables as $pivotTable) { |
|
422 | - $remoteBeans = $object->_getRelationships($pivotTable); |
|
423 | - foreach ($remoteBeans as $remoteBean) { |
|
424 | - $object->_removeRelationship($pivotTable, $remoteBean); |
|
425 | - } |
|
426 | - } |
|
427 | - } |
|
428 | - $this->persistManyToManyRelationships($object); |
|
429 | - } |
|
430 | - |
|
431 | - |
|
432 | - /** |
|
433 | - * This function removes the given object from the database. It will also remove all objects relied to the one given |
|
434 | - * by parameter before all. |
|
435 | - * |
|
436 | - * Notice: if the object has a multiple primary key, the function will not work. |
|
437 | - * |
|
438 | - * @param AbstractTDBMObject $objToDelete |
|
439 | - */ |
|
440 | - public function deleteCascade(AbstractTDBMObject $objToDelete) { |
|
441 | - $this->deleteAllConstraintWithThisObject($objToDelete); |
|
442 | - $this->delete($objToDelete); |
|
443 | - } |
|
444 | - |
|
445 | - /** |
|
446 | - * This function is used only in TDBMService (private function) |
|
447 | - * It will call deleteCascade function foreach object relied with a foreign key to the object given by parameter |
|
448 | - * |
|
449 | - * @param TDBMObject $obj |
|
450 | - * @return TDBMObjectArray |
|
451 | - */ |
|
452 | - private function deleteAllConstraintWithThisObject(TDBMObject $obj) { |
|
453 | - $tableFrom = $this->connection->escapeDBItem($obj->_getDbTableName()); |
|
454 | - $constraints = $this->connection->getConstraintsFromTable($tableFrom); |
|
455 | - foreach ($constraints as $constraint) { |
|
456 | - $tableTo = $this->connection->escapeDBItem($constraint["table1"]); |
|
457 | - $colFrom = $this->connection->escapeDBItem($constraint["col2"]); |
|
458 | - $colTo = $this->connection->escapeDBItem($constraint["col1"]); |
|
459 | - $idVarName = $this->connection->escapeDBItem($obj->getPrimaryKey()[0]); |
|
460 | - $idValue = $this->connection->quoteSmart($obj->TDBMObject_id); |
|
461 | - $sql = "SELECT DISTINCT ".$tableTo.".*" |
|
462 | - ." FROM ".$tableFrom |
|
463 | - ." LEFT JOIN ".$tableTo." ON ".$tableFrom.".".$colFrom." = ".$tableTo.".".$colTo |
|
464 | - ." WHERE ".$tableFrom.".".$idVarName."=".$idValue; |
|
465 | - $result = $this->getObjectsFromSQL($constraint["table1"], $sql); |
|
466 | - foreach ($result as $tdbmObj) { |
|
467 | - $this->deleteCascade($tdbmObj); |
|
468 | - } |
|
469 | - } |
|
470 | - } |
|
414 | + /** |
|
415 | + * Removes all many to many relationships for this object. |
|
416 | + * @param AbstractTDBMObject $object |
|
417 | + */ |
|
418 | + private function deleteManyToManyRelationships(AbstractTDBMObject $object) { |
|
419 | + foreach ($object->_getDbRows() as $tableName => $dbRow) { |
|
420 | + $pivotTables = $this->tdbmSchemaAnalyzer->getPivotTableLinkedToTable($tableName); |
|
421 | + foreach ($pivotTables as $pivotTable) { |
|
422 | + $remoteBeans = $object->_getRelationships($pivotTable); |
|
423 | + foreach ($remoteBeans as $remoteBean) { |
|
424 | + $object->_removeRelationship($pivotTable, $remoteBean); |
|
425 | + } |
|
426 | + } |
|
427 | + } |
|
428 | + $this->persistManyToManyRelationships($object); |
|
429 | + } |
|
430 | + |
|
431 | + |
|
432 | + /** |
|
433 | + * This function removes the given object from the database. It will also remove all objects relied to the one given |
|
434 | + * by parameter before all. |
|
435 | + * |
|
436 | + * Notice: if the object has a multiple primary key, the function will not work. |
|
437 | + * |
|
438 | + * @param AbstractTDBMObject $objToDelete |
|
439 | + */ |
|
440 | + public function deleteCascade(AbstractTDBMObject $objToDelete) { |
|
441 | + $this->deleteAllConstraintWithThisObject($objToDelete); |
|
442 | + $this->delete($objToDelete); |
|
443 | + } |
|
444 | + |
|
445 | + /** |
|
446 | + * This function is used only in TDBMService (private function) |
|
447 | + * It will call deleteCascade function foreach object relied with a foreign key to the object given by parameter |
|
448 | + * |
|
449 | + * @param TDBMObject $obj |
|
450 | + * @return TDBMObjectArray |
|
451 | + */ |
|
452 | + private function deleteAllConstraintWithThisObject(TDBMObject $obj) { |
|
453 | + $tableFrom = $this->connection->escapeDBItem($obj->_getDbTableName()); |
|
454 | + $constraints = $this->connection->getConstraintsFromTable($tableFrom); |
|
455 | + foreach ($constraints as $constraint) { |
|
456 | + $tableTo = $this->connection->escapeDBItem($constraint["table1"]); |
|
457 | + $colFrom = $this->connection->escapeDBItem($constraint["col2"]); |
|
458 | + $colTo = $this->connection->escapeDBItem($constraint["col1"]); |
|
459 | + $idVarName = $this->connection->escapeDBItem($obj->getPrimaryKey()[0]); |
|
460 | + $idValue = $this->connection->quoteSmart($obj->TDBMObject_id); |
|
461 | + $sql = "SELECT DISTINCT ".$tableTo.".*" |
|
462 | + ." FROM ".$tableFrom |
|
463 | + ." LEFT JOIN ".$tableTo." ON ".$tableFrom.".".$colFrom." = ".$tableTo.".".$colTo |
|
464 | + ." WHERE ".$tableFrom.".".$idVarName."=".$idValue; |
|
465 | + $result = $this->getObjectsFromSQL($constraint["table1"], $sql); |
|
466 | + foreach ($result as $tdbmObj) { |
|
467 | + $this->deleteCascade($tdbmObj); |
|
468 | + } |
|
469 | + } |
|
470 | + } |
|
471 | 471 | |
472 | 472 | /** |
473 | 473 | * This function performs a save() of all the objects that have been modified. |
@@ -796,8 +796,8 @@ discard block |
||
796 | 796 | } |
797 | 797 | |
798 | 798 | /** |
799 | - * @param array<string, string> $tableToBeanMap |
|
800 | - */ |
|
799 | + * @param array<string, string> $tableToBeanMap |
|
800 | + */ |
|
801 | 801 | public function setTableToBeanMap(array $tableToBeanMap) { |
802 | 802 | $this->tableToBeanMap = $tableToBeanMap; |
803 | 803 | } |
@@ -843,7 +843,7 @@ discard block |
||
843 | 843 | |
844 | 844 | // Let's save all references in NEW or DETACHED state (we need their primary key) |
845 | 845 | foreach ($references as $fkName => $reference) { |
846 | - $refStatus = $reference->_getStatus(); |
|
846 | + $refStatus = $reference->_getStatus(); |
|
847 | 847 | if ($refStatus === TDBMObjectStateEnum::STATE_NEW || $refStatus === TDBMObjectStateEnum::STATE_DETACHED) { |
848 | 848 | $this->save($reference); |
849 | 849 | } |
@@ -1002,94 +1002,94 @@ discard block |
||
1002 | 1002 | throw new TDBMInvalidOperationException("This object has been deleted. It cannot be saved."); |
1003 | 1003 | } |
1004 | 1004 | |
1005 | - // Finally, let's save all the many to many relationships to this bean. |
|
1006 | - $this->persistManyToManyRelationships($object); |
|
1005 | + // Finally, let's save all the many to many relationships to this bean. |
|
1006 | + $this->persistManyToManyRelationships($object); |
|
1007 | 1007 | } |
1008 | 1008 | |
1009 | - private function persistManyToManyRelationships(AbstractTDBMObject $object) { |
|
1010 | - foreach ($object->_getCachedRelationships() as $pivotTableName => $storage) { |
|
1011 | - $tableDescriptor = $this->tdbmSchemaAnalyzer->getSchema()->getTable($pivotTableName); |
|
1012 | - list($localFk, $remoteFk) = $this->getPivotTableForeignKeys($pivotTableName, $object); |
|
1013 | - |
|
1014 | - foreach ($storage as $remoteBean) { |
|
1015 | - /* @var $remoteBean AbstractTDBMObject */ |
|
1016 | - $statusArr = $storage[$remoteBean]; |
|
1017 | - $status = $statusArr['status']; |
|
1018 | - $reverse = $statusArr['reverse']; |
|
1019 | - if ($reverse) { |
|
1020 | - continue; |
|
1021 | - } |
|
1022 | - |
|
1023 | - if ($status === 'new') { |
|
1024 | - $remoteBeanStatus = $remoteBean->_getStatus(); |
|
1025 | - if ($remoteBeanStatus === TDBMObjectStateEnum::STATE_NEW || $remoteBeanStatus === TDBMObjectStateEnum::STATE_DETACHED) { |
|
1026 | - // Let's save remote bean if needed. |
|
1027 | - $this->save($remoteBean); |
|
1028 | - } |
|
1009 | + private function persistManyToManyRelationships(AbstractTDBMObject $object) { |
|
1010 | + foreach ($object->_getCachedRelationships() as $pivotTableName => $storage) { |
|
1011 | + $tableDescriptor = $this->tdbmSchemaAnalyzer->getSchema()->getTable($pivotTableName); |
|
1012 | + list($localFk, $remoteFk) = $this->getPivotTableForeignKeys($pivotTableName, $object); |
|
1013 | + |
|
1014 | + foreach ($storage as $remoteBean) { |
|
1015 | + /* @var $remoteBean AbstractTDBMObject */ |
|
1016 | + $statusArr = $storage[$remoteBean]; |
|
1017 | + $status = $statusArr['status']; |
|
1018 | + $reverse = $statusArr['reverse']; |
|
1019 | + if ($reverse) { |
|
1020 | + continue; |
|
1021 | + } |
|
1029 | 1022 | |
1030 | - $filters = $this->getPivotFilters($object, $remoteBean, $localFk, $remoteFk); |
|
1023 | + if ($status === 'new') { |
|
1024 | + $remoteBeanStatus = $remoteBean->_getStatus(); |
|
1025 | + if ($remoteBeanStatus === TDBMObjectStateEnum::STATE_NEW || $remoteBeanStatus === TDBMObjectStateEnum::STATE_DETACHED) { |
|
1026 | + // Let's save remote bean if needed. |
|
1027 | + $this->save($remoteBean); |
|
1028 | + } |
|
1031 | 1029 | |
1032 | - $types = []; |
|
1030 | + $filters = $this->getPivotFilters($object, $remoteBean, $localFk, $remoteFk); |
|
1033 | 1031 | |
1034 | - foreach ($filters as $columnName => $value) { |
|
1035 | - $columnDescriptor = $tableDescriptor->getColumn($columnName); |
|
1036 | - $types[] = $columnDescriptor->getType(); |
|
1037 | - } |
|
1032 | + $types = []; |
|
1033 | + |
|
1034 | + foreach ($filters as $columnName => $value) { |
|
1035 | + $columnDescriptor = $tableDescriptor->getColumn($columnName); |
|
1036 | + $types[] = $columnDescriptor->getType(); |
|
1037 | + } |
|
1038 | 1038 | |
1039 | - $this->connection->insert($pivotTableName, $filters, $types); |
|
1039 | + $this->connection->insert($pivotTableName, $filters, $types); |
|
1040 | 1040 | |
1041 | - // Finally, let's mark relationships as saved. |
|
1042 | - $statusArr['status'] = 'loaded'; |
|
1043 | - $storage[$remoteBean] = $statusArr; |
|
1044 | - $remoteStorage = $remoteBean->_getCachedRelationships()[$pivotTableName]; |
|
1045 | - $remoteStatusArr = $remoteStorage[$object]; |
|
1046 | - $remoteStatusArr['status'] = 'loaded'; |
|
1047 | - $remoteStorage[$object] = $remoteStatusArr; |
|
1041 | + // Finally, let's mark relationships as saved. |
|
1042 | + $statusArr['status'] = 'loaded'; |
|
1043 | + $storage[$remoteBean] = $statusArr; |
|
1044 | + $remoteStorage = $remoteBean->_getCachedRelationships()[$pivotTableName]; |
|
1045 | + $remoteStatusArr = $remoteStorage[$object]; |
|
1046 | + $remoteStatusArr['status'] = 'loaded'; |
|
1047 | + $remoteStorage[$object] = $remoteStatusArr; |
|
1048 | 1048 | |
1049 | - } elseif ($status === 'delete') { |
|
1050 | - $filters = $this->getPivotFilters($object, $remoteBean, $localFk, $remoteFk); |
|
1049 | + } elseif ($status === 'delete') { |
|
1050 | + $filters = $this->getPivotFilters($object, $remoteBean, $localFk, $remoteFk); |
|
1051 | 1051 | |
1052 | - $types = []; |
|
1052 | + $types = []; |
|
1053 | 1053 | |
1054 | - foreach ($filters as $columnName => $value) { |
|
1055 | - $columnDescriptor = $tableDescriptor->getColumn($columnName); |
|
1056 | - $types[] = $columnDescriptor->getType(); |
|
1057 | - } |
|
1054 | + foreach ($filters as $columnName => $value) { |
|
1055 | + $columnDescriptor = $tableDescriptor->getColumn($columnName); |
|
1056 | + $types[] = $columnDescriptor->getType(); |
|
1057 | + } |
|
1058 | + |
|
1059 | + $this->connection->delete($pivotTableName, $filters, $types); |
|
1060 | + |
|
1061 | + // Finally, let's remove relationships completely from bean. |
|
1062 | + $storage->detach($remoteBean); |
|
1063 | + $remoteBean->_getCachedRelationships()[$pivotTableName]->detach($object); |
|
1064 | + } |
|
1065 | + } |
|
1066 | + } |
|
1067 | + } |
|
1058 | 1068 | |
1059 | - $this->connection->delete($pivotTableName, $filters, $types); |
|
1060 | - |
|
1061 | - // Finally, let's remove relationships completely from bean. |
|
1062 | - $storage->detach($remoteBean); |
|
1063 | - $remoteBean->_getCachedRelationships()[$pivotTableName]->detach($object); |
|
1064 | - } |
|
1065 | - } |
|
1066 | - } |
|
1067 | - } |
|
1068 | - |
|
1069 | - private function getPivotFilters(AbstractTDBMObject $localBean, AbstractTDBMObject $remoteBean, ForeignKeyConstraint $localFk, ForeignKeyConstraint $remoteFk) { |
|
1070 | - $localBeanPk = $this->getPrimaryKeyValues($localBean); |
|
1071 | - $remoteBeanPk = $this->getPrimaryKeyValues($remoteBean); |
|
1072 | - $localColumns = $localFk->getLocalColumns(); |
|
1073 | - $remoteColumns = $remoteFk->getLocalColumns(); |
|
1074 | - |
|
1075 | - $localFilters = array_combine($localColumns, $localBeanPk); |
|
1076 | - $remoteFilters = array_combine($remoteColumns, $remoteBeanPk); |
|
1077 | - |
|
1078 | - return array_merge($localFilters, $remoteFilters); |
|
1079 | - } |
|
1080 | - |
|
1081 | - /** |
|
1082 | - * Returns the "values" of the primary key. |
|
1083 | - * This returns the primary key from the $primaryKey attribute, not the one stored in the columns. |
|
1084 | - * |
|
1085 | - * @param AbstractTDBMObject $bean |
|
1086 | - * @return array numerically indexed array of values. |
|
1087 | - */ |
|
1088 | - private function getPrimaryKeyValues(AbstractTDBMObject $bean) { |
|
1089 | - $dbRows = $bean->_getDbRows(); |
|
1090 | - $dbRow = reset($dbRows); |
|
1091 | - return array_values($dbRow->_getPrimaryKeys()); |
|
1092 | - } |
|
1069 | + private function getPivotFilters(AbstractTDBMObject $localBean, AbstractTDBMObject $remoteBean, ForeignKeyConstraint $localFk, ForeignKeyConstraint $remoteFk) { |
|
1070 | + $localBeanPk = $this->getPrimaryKeyValues($localBean); |
|
1071 | + $remoteBeanPk = $this->getPrimaryKeyValues($remoteBean); |
|
1072 | + $localColumns = $localFk->getLocalColumns(); |
|
1073 | + $remoteColumns = $remoteFk->getLocalColumns(); |
|
1074 | + |
|
1075 | + $localFilters = array_combine($localColumns, $localBeanPk); |
|
1076 | + $remoteFilters = array_combine($remoteColumns, $remoteBeanPk); |
|
1077 | + |
|
1078 | + return array_merge($localFilters, $remoteFilters); |
|
1079 | + } |
|
1080 | + |
|
1081 | + /** |
|
1082 | + * Returns the "values" of the primary key. |
|
1083 | + * This returns the primary key from the $primaryKey attribute, not the one stored in the columns. |
|
1084 | + * |
|
1085 | + * @param AbstractTDBMObject $bean |
|
1086 | + * @return array numerically indexed array of values. |
|
1087 | + */ |
|
1088 | + private function getPrimaryKeyValues(AbstractTDBMObject $bean) { |
|
1089 | + $dbRows = $bean->_getDbRows(); |
|
1090 | + $dbRow = reset($dbRows); |
|
1091 | + return array_values($dbRow->_getPrimaryKeys()); |
|
1092 | + } |
|
1093 | 1093 | |
1094 | 1094 | /** |
1095 | 1095 | * Returns a unique hash used to store the object based on its primary key. |
@@ -1571,41 +1571,41 @@ discard block |
||
1571 | 1571 | */ |
1572 | 1572 | public function _getRelatedBeans($pivotTableName, AbstractTDBMObject $bean) { |
1573 | 1573 | |
1574 | - list($localFk, $remoteFk) = $this->getPivotTableForeignKeys($pivotTableName, $bean); |
|
1575 | - /* @var $localFk ForeignKeyConstraint */ |
|
1576 | - /* @var $remoteFk ForeignKeyConstraint */ |
|
1577 | - $remoteTable = $remoteFk->getForeignTableName(); |
|
1574 | + list($localFk, $remoteFk) = $this->getPivotTableForeignKeys($pivotTableName, $bean); |
|
1575 | + /* @var $localFk ForeignKeyConstraint */ |
|
1576 | + /* @var $remoteFk ForeignKeyConstraint */ |
|
1577 | + $remoteTable = $remoteFk->getForeignTableName(); |
|
1578 | 1578 | |
1579 | 1579 | |
1580 | - $primaryKeys = $this->getPrimaryKeyValues($bean); |
|
1581 | - $columnNames = array_map(function($name) use ($pivotTableName) { return $pivotTableName.'.'.$name; }, $localFk->getLocalColumns()); |
|
1580 | + $primaryKeys = $this->getPrimaryKeyValues($bean); |
|
1581 | + $columnNames = array_map(function($name) use ($pivotTableName) { return $pivotTableName.'.'.$name; }, $localFk->getLocalColumns()); |
|
1582 | 1582 | |
1583 | - $filter = array_combine($columnNames, $primaryKeys); |
|
1583 | + $filter = array_combine($columnNames, $primaryKeys); |
|
1584 | 1584 | |
1585 | - return $this->findObjects($remoteTable, $filter); |
|
1585 | + return $this->findObjects($remoteTable, $filter); |
|
1586 | 1586 | } |
1587 | 1587 | |
1588 | - /** |
|
1589 | - * @param $pivotTableName |
|
1590 | - * @param AbstractTDBMObject $bean The LOCAL bean |
|
1591 | - * @return ForeignKeyConstraint[] First item: the LOCAL bean, second item: the REMOTE bean. |
|
1592 | - * @throws TDBMException |
|
1593 | - */ |
|
1594 | - private function getPivotTableForeignKeys($pivotTableName, AbstractTDBMObject $bean) { |
|
1595 | - $fks = array_values($this->tdbmSchemaAnalyzer->getSchema()->getTable($pivotTableName)->getForeignKeys()); |
|
1596 | - $table1 = $fks[0]->getForeignTableName(); |
|
1597 | - $table2 = $fks[1]->getForeignTableName(); |
|
1598 | - |
|
1599 | - $beanTables = array_map(function(DbRow $dbRow) { return $dbRow->_getDbTableName(); }, $bean->_getDbRows()); |
|
1600 | - |
|
1601 | - if (in_array($table1, $beanTables)) { |
|
1602 | - return [$fks[0], $fks[1]]; |
|
1603 | - } elseif (in_array($table2, $beanTables)) { |
|
1604 | - return [$fks[1], $fks[0]]; |
|
1605 | - } else { |
|
1606 | - throw new TDBMException("Unexpected bean type in getPivotTableForeignKeys. Awaiting beans from table {$table1} and {$table2} for pivot table {$pivotTableName}"); |
|
1607 | - } |
|
1608 | - } |
|
1588 | + /** |
|
1589 | + * @param $pivotTableName |
|
1590 | + * @param AbstractTDBMObject $bean The LOCAL bean |
|
1591 | + * @return ForeignKeyConstraint[] First item: the LOCAL bean, second item: the REMOTE bean. |
|
1592 | + * @throws TDBMException |
|
1593 | + */ |
|
1594 | + private function getPivotTableForeignKeys($pivotTableName, AbstractTDBMObject $bean) { |
|
1595 | + $fks = array_values($this->tdbmSchemaAnalyzer->getSchema()->getTable($pivotTableName)->getForeignKeys()); |
|
1596 | + $table1 = $fks[0]->getForeignTableName(); |
|
1597 | + $table2 = $fks[1]->getForeignTableName(); |
|
1598 | + |
|
1599 | + $beanTables = array_map(function(DbRow $dbRow) { return $dbRow->_getDbTableName(); }, $bean->_getDbRows()); |
|
1600 | + |
|
1601 | + if (in_array($table1, $beanTables)) { |
|
1602 | + return [$fks[0], $fks[1]]; |
|
1603 | + } elseif (in_array($table2, $beanTables)) { |
|
1604 | + return [$fks[1], $fks[0]]; |
|
1605 | + } else { |
|
1606 | + throw new TDBMException("Unexpected bean type in getPivotTableForeignKeys. Awaiting beans from table {$table1} and {$table2} for pivot table {$pivotTableName}"); |
|
1607 | + } |
|
1608 | + } |
|
1609 | 1609 | |
1610 | 1610 | /** |
1611 | 1611 | * Returns a list of pivot tables linked to $bean. |
@@ -9,85 +9,85 @@ |
||
9 | 9 | */ |
10 | 10 | class MapIterator implements Iterator { |
11 | 11 | |
12 | - /** |
|
13 | - * @var Iterator |
|
14 | - */ |
|
15 | - protected $iterator; |
|
12 | + /** |
|
13 | + * @var Iterator |
|
14 | + */ |
|
15 | + protected $iterator; |
|
16 | 16 | |
17 | - /** |
|
18 | - * @var callable Modifies the current item in iterator |
|
19 | - */ |
|
20 | - protected $callable; |
|
17 | + /** |
|
18 | + * @var callable Modifies the current item in iterator |
|
19 | + */ |
|
20 | + protected $callable; |
|
21 | 21 | |
22 | - /** |
|
23 | - * @param $iterator Iterator|array |
|
24 | - * @param $callable callable This can have two parameters |
|
25 | - * @throws TDBMException |
|
26 | - */ |
|
27 | - public function __construct($iterator, callable $callable) { |
|
28 | - if (is_array($iterator)) { |
|
29 | - $this->iterator = new \ArrayIterator($iterator); |
|
30 | - } |
|
31 | - elseif (!($iterator instanceof Iterator)) |
|
32 | - { |
|
33 | - throw new TDBMException("\$iterator parameter must be an instance of Iterator"); |
|
34 | - } |
|
35 | - else |
|
36 | - { |
|
37 | - $this->iterator = $iterator; |
|
38 | - } |
|
22 | + /** |
|
23 | + * @param $iterator Iterator|array |
|
24 | + * @param $callable callable This can have two parameters |
|
25 | + * @throws TDBMException |
|
26 | + */ |
|
27 | + public function __construct($iterator, callable $callable) { |
|
28 | + if (is_array($iterator)) { |
|
29 | + $this->iterator = new \ArrayIterator($iterator); |
|
30 | + } |
|
31 | + elseif (!($iterator instanceof Iterator)) |
|
32 | + { |
|
33 | + throw new TDBMException("\$iterator parameter must be an instance of Iterator"); |
|
34 | + } |
|
35 | + else |
|
36 | + { |
|
37 | + $this->iterator = $iterator; |
|
38 | + } |
|
39 | 39 | |
40 | - if ($callable instanceof \Closure) { |
|
41 | - // make sure there's one argument |
|
42 | - $reflection = new \ReflectionObject($callable); |
|
43 | - if ($reflection->hasMethod('__invoke')) { |
|
44 | - $method = $reflection->getMethod('__invoke'); |
|
45 | - if ($method->getNumberOfParameters() !== 1) { |
|
46 | - throw new TDBMException("\$callable must accept one and only one parameter."); |
|
47 | - } |
|
48 | - } |
|
49 | - } |
|
40 | + if ($callable instanceof \Closure) { |
|
41 | + // make sure there's one argument |
|
42 | + $reflection = new \ReflectionObject($callable); |
|
43 | + if ($reflection->hasMethod('__invoke')) { |
|
44 | + $method = $reflection->getMethod('__invoke'); |
|
45 | + if ($method->getNumberOfParameters() !== 1) { |
|
46 | + throw new TDBMException("\$callable must accept one and only one parameter."); |
|
47 | + } |
|
48 | + } |
|
49 | + } |
|
50 | 50 | |
51 | - $this->callable = $callable; |
|
52 | - } |
|
51 | + $this->callable = $callable; |
|
52 | + } |
|
53 | 53 | |
54 | - /** |
|
55 | - * Alters the current item with $this->callable and returns a new item. |
|
56 | - * Be careful with your types as we can't do static type checking here! |
|
57 | - * @return mixed |
|
58 | - */ |
|
59 | - public function current() |
|
60 | - { |
|
61 | - $callable = $this->callable; |
|
62 | - return $callable($this->iterator->current()); |
|
63 | - } |
|
54 | + /** |
|
55 | + * Alters the current item with $this->callable and returns a new item. |
|
56 | + * Be careful with your types as we can't do static type checking here! |
|
57 | + * @return mixed |
|
58 | + */ |
|
59 | + public function current() |
|
60 | + { |
|
61 | + $callable = $this->callable; |
|
62 | + return $callable($this->iterator->current()); |
|
63 | + } |
|
64 | 64 | |
65 | - public function next() |
|
66 | - { |
|
67 | - $this->iterator->next(); |
|
68 | - } |
|
65 | + public function next() |
|
66 | + { |
|
67 | + $this->iterator->next(); |
|
68 | + } |
|
69 | 69 | |
70 | - public function key() |
|
71 | - { |
|
72 | - return $this->iterator->key(); |
|
73 | - } |
|
70 | + public function key() |
|
71 | + { |
|
72 | + return $this->iterator->key(); |
|
73 | + } |
|
74 | 74 | |
75 | - public function valid() |
|
76 | - { |
|
77 | - return $this->iterator->valid(); |
|
78 | - } |
|
75 | + public function valid() |
|
76 | + { |
|
77 | + return $this->iterator->valid(); |
|
78 | + } |
|
79 | 79 | |
80 | - public function rewind() |
|
81 | - { |
|
82 | - $this->iterator->rewind(); |
|
83 | - } |
|
80 | + public function rewind() |
|
81 | + { |
|
82 | + $this->iterator->rewind(); |
|
83 | + } |
|
84 | 84 | |
85 | - /** |
|
86 | - * Casts the iterator to a PHP array. |
|
87 | - * |
|
88 | - * @return array |
|
89 | - */ |
|
90 | - public function toArray() { |
|
91 | - return iterator_to_array($this); |
|
92 | - } |
|
85 | + /** |
|
86 | + * Casts the iterator to a PHP array. |
|
87 | + * |
|
88 | + * @return array |
|
89 | + */ |
|
90 | + public function toArray() { |
|
91 | + return iterator_to_array($this); |
|
92 | + } |
|
93 | 93 | } |
@@ -27,12 +27,10 @@ |
||
27 | 27 | public function __construct($iterator, callable $callable) { |
28 | 28 | if (is_array($iterator)) { |
29 | 29 | $this->iterator = new \ArrayIterator($iterator); |
30 | - } |
|
31 | - elseif (!($iterator instanceof Iterator)) |
|
30 | + } elseif (!($iterator instanceof Iterator)) |
|
32 | 31 | { |
33 | 32 | throw new TDBMException("\$iterator parameter must be an instance of Iterator"); |
34 | - } |
|
35 | - else |
|
33 | + } else |
|
36 | 34 | { |
37 | 35 | $this->iterator = $iterator; |
38 | 36 | } |
@@ -13,104 +13,104 @@ |
||
13 | 13 | abstract class AbstractBeanPropertyDescriptor |
14 | 14 | { |
15 | 15 | |
16 | - /** |
|
17 | - * @var Table |
|
18 | - */ |
|
19 | - protected $table; |
|
20 | - |
|
21 | - /** |
|
22 | - * Whether to use the more complex name in case of conflict. |
|
23 | - * @var bool |
|
24 | - */ |
|
25 | - protected $alternativeName = false; |
|
26 | - |
|
27 | - /** |
|
28 | - * @param Table $table |
|
29 | - */ |
|
30 | - public function __construct(Table $table) |
|
31 | - { |
|
32 | - $this->table = $table; |
|
33 | - } |
|
34 | - |
|
35 | - |
|
36 | - /** |
|
37 | - * Use the more complex name in case of conflict. |
|
38 | - */ |
|
39 | - public function useAlternativeName() |
|
40 | - { |
|
41 | - $this->alternativeName = true; |
|
42 | - } |
|
43 | - |
|
44 | - /** |
|
45 | - * Returns the name of the class linked to this property or null if this is not a foreign key |
|
46 | - * @return null|string |
|
47 | - */ |
|
48 | - abstract public function getClassName(); |
|
49 | - |
|
50 | - /** |
|
51 | - * Returns the param annotation for this property (useful for constructor). |
|
52 | - * |
|
53 | - * @return string |
|
54 | - */ |
|
55 | - abstract public function getParamAnnotation(); |
|
56 | - |
|
57 | - public function getVariableName() { |
|
58 | - return '$'.$this->getLowerCamelCaseName(); |
|
59 | - } |
|
60 | - |
|
61 | - public function getLowerCamelCaseName() { |
|
62 | - return TDBMDaoGenerator::toVariableName($this->getUpperCamelCaseName()); |
|
63 | - } |
|
64 | - |
|
65 | - abstract public function getUpperCamelCaseName(); |
|
66 | - |
|
67 | - public function getSetterName() { |
|
68 | - return 'set'.$this->getUpperCamelCaseName(); |
|
69 | - } |
|
70 | - |
|
71 | - public function getGetterName() { |
|
72 | - return 'get'.$this->getUpperCamelCaseName(); |
|
73 | - } |
|
74 | - |
|
75 | - /** |
|
76 | - * Returns the PHP code used in the ben constructor for this property. |
|
77 | - * @return string |
|
78 | - */ |
|
79 | - public function getConstructorAssignCode() { |
|
80 | - $str = ' $this->%s(%s);'; |
|
81 | - return sprintf($str, $this->getSetterName(), $this->getVariableName()); |
|
82 | - } |
|
83 | - |
|
84 | - /** |
|
85 | - * Returns true if the property is compulsory (and therefore should be fetched in the constructor). |
|
86 | - * @return bool |
|
87 | - */ |
|
88 | - abstract public function isCompulsory(); |
|
89 | - |
|
90 | - /** |
|
91 | - * Returns true if the property is the primary key |
|
92 | - * @return bool |
|
93 | - */ |
|
94 | - abstract public function isPrimaryKey(); |
|
95 | - |
|
96 | - /** |
|
97 | - * @return Table |
|
98 | - */ |
|
99 | - public function getTable() |
|
100 | - { |
|
101 | - return $this->table; |
|
102 | - } |
|
103 | - |
|
104 | - /** |
|
105 | - * Returns the PHP code for getters and setters |
|
106 | - * @return string |
|
107 | - */ |
|
108 | - abstract public function getGetterSetterCode(); |
|
109 | - |
|
110 | - /** |
|
111 | - * Returns the part of code useful when doing json serialization. |
|
112 | - * |
|
113 | - * @return string |
|
114 | - */ |
|
115 | - abstract public function getJsonSerializeCode(); |
|
16 | + /** |
|
17 | + * @var Table |
|
18 | + */ |
|
19 | + protected $table; |
|
20 | + |
|
21 | + /** |
|
22 | + * Whether to use the more complex name in case of conflict. |
|
23 | + * @var bool |
|
24 | + */ |
|
25 | + protected $alternativeName = false; |
|
26 | + |
|
27 | + /** |
|
28 | + * @param Table $table |
|
29 | + */ |
|
30 | + public function __construct(Table $table) |
|
31 | + { |
|
32 | + $this->table = $table; |
|
33 | + } |
|
34 | + |
|
35 | + |
|
36 | + /** |
|
37 | + * Use the more complex name in case of conflict. |
|
38 | + */ |
|
39 | + public function useAlternativeName() |
|
40 | + { |
|
41 | + $this->alternativeName = true; |
|
42 | + } |
|
43 | + |
|
44 | + /** |
|
45 | + * Returns the name of the class linked to this property or null if this is not a foreign key |
|
46 | + * @return null|string |
|
47 | + */ |
|
48 | + abstract public function getClassName(); |
|
49 | + |
|
50 | + /** |
|
51 | + * Returns the param annotation for this property (useful for constructor). |
|
52 | + * |
|
53 | + * @return string |
|
54 | + */ |
|
55 | + abstract public function getParamAnnotation(); |
|
56 | + |
|
57 | + public function getVariableName() { |
|
58 | + return '$'.$this->getLowerCamelCaseName(); |
|
59 | + } |
|
60 | + |
|
61 | + public function getLowerCamelCaseName() { |
|
62 | + return TDBMDaoGenerator::toVariableName($this->getUpperCamelCaseName()); |
|
63 | + } |
|
64 | + |
|
65 | + abstract public function getUpperCamelCaseName(); |
|
66 | + |
|
67 | + public function getSetterName() { |
|
68 | + return 'set'.$this->getUpperCamelCaseName(); |
|
69 | + } |
|
70 | + |
|
71 | + public function getGetterName() { |
|
72 | + return 'get'.$this->getUpperCamelCaseName(); |
|
73 | + } |
|
74 | + |
|
75 | + /** |
|
76 | + * Returns the PHP code used in the ben constructor for this property. |
|
77 | + * @return string |
|
78 | + */ |
|
79 | + public function getConstructorAssignCode() { |
|
80 | + $str = ' $this->%s(%s);'; |
|
81 | + return sprintf($str, $this->getSetterName(), $this->getVariableName()); |
|
82 | + } |
|
83 | + |
|
84 | + /** |
|
85 | + * Returns true if the property is compulsory (and therefore should be fetched in the constructor). |
|
86 | + * @return bool |
|
87 | + */ |
|
88 | + abstract public function isCompulsory(); |
|
89 | + |
|
90 | + /** |
|
91 | + * Returns true if the property is the primary key |
|
92 | + * @return bool |
|
93 | + */ |
|
94 | + abstract public function isPrimaryKey(); |
|
95 | + |
|
96 | + /** |
|
97 | + * @return Table |
|
98 | + */ |
|
99 | + public function getTable() |
|
100 | + { |
|
101 | + return $this->table; |
|
102 | + } |
|
103 | + |
|
104 | + /** |
|
105 | + * Returns the PHP code for getters and setters |
|
106 | + * @return string |
|
107 | + */ |
|
108 | + abstract public function getGetterSetterCode(); |
|
109 | + |
|
110 | + /** |
|
111 | + * Returns the part of code useful when doing json serialization. |
|
112 | + * |
|
113 | + * @return string |
|
114 | + */ |
|
115 | + abstract public function getJsonSerializeCode(); |
|
116 | 116 | } |
117 | 117 | \ No newline at end of file |