Completed
Pull Request — 3.4 (#46)
by David
05:30
created
src/Mouf/Database/TDBM/Controllers/TdbmInstallController.php 2 patches
Unused Use Statements   -4 removed lines patch added patch discarded remove patch
@@ -2,12 +2,8 @@
 block discarded – undo
2 2
 namespace Mouf\Database\TDBM\Controllers;
3 3
 
4 4
 use Mouf\Composer\ClassNameMapper;
5
-use Mouf\MoufUtils;
6
-
7 5
 use Mouf\Actions\InstallUtils;
8
-
9 6
 use Mouf\MoufManager;
10
-
11 7
 use Mouf\Html\HtmlElement\HtmlBlock;
12 8
 use Mouf\Mvc\Splash\Controllers\Controller;
13 9
 
Please login to merge, or discard this patch.
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -109,12 +109,12 @@  discard block
 block discarded – undo
109 109
 		$this->beanNamespace = $this->moufManager->getVariable("tdbmDefaultBeanNamespace_tdbmService");
110 110
 		
111 111
 		if ($this->daoNamespace == null && $this->beanNamespace == null) {
112
-            $classNameMapper = ClassNameMapper::createFromComposerFile(__DIR__.'/../../../../../../../../composer.json');
112
+			$classNameMapper = ClassNameMapper::createFromComposerFile(__DIR__.'/../../../../../../../../composer.json');
113 113
 
114
-            $autoloadNamespaces = $classNameMapper->getManagedNamespaces();
114
+			$autoloadNamespaces = $classNameMapper->getManagedNamespaces();
115 115
 			if ($autoloadNamespaces) {
116 116
 				$this->autoloadDetected = true;
117
-                $rootNamespace = $autoloadNamespaces[0];
117
+				$rootNamespace = $autoloadNamespaces[0];
118 118
 				$this->daoNamespace = $rootNamespace."Dao";
119 119
 				$this->beanNamespace = $rootNamespace."Dao\\Bean";
120 120
 			} else {
@@ -144,7 +144,7 @@  discard block
 block discarded – undo
144 144
 	 * @param string $selfedit
145 145
 	 * @throws \Mouf\MoufException
146 146
 	 */
147
-    public function generate($daonamespace, $beannamespace, $storeInUtc = 0, $selfedit="false") {
147
+	public function generate($daonamespace, $beannamespace, $storeInUtc = 0, $selfedit="false") {
148 148
 		$this->selfedit = $selfedit;
149 149
 		
150 150
 		if ($selfedit == "true") {
Please login to merge, or discard this patch.
src/Mouf/Database/TDBM/Filters/OrderBySQLString.php 2 patches
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -1,8 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 namespace Mouf\Database\TDBM\Filters;
3 3
 
4
-use Doctrine\DBAL\Driver\Connection;
5
-
6 4
 /*
7 5
  Copyright (C) 2006-2011 David Négrier - THE CODING MACHINE
8 6
 
Please login to merge, or discard this patch.
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -133,14 +133,14 @@
 block discarded – undo
133 133
 		$work_table = explode("'", $work_str);
134 134
 
135 135
 		if (count($work_table) == 0)
136
-		    return '';
136
+			return '';
137 137
 
138 138
 		// if we start with a ', let's remove the first text
139 139
 		if (strstr($work_str,"'") === 0)
140
-		    array_shift($work_table);
140
+			array_shift($work_table);
141 141
 			
142 142
 		if (count($work_table) == 0)
143
-		    return '';
143
+			return '';
144 144
 
145 145
 		// Now, let's take only the stuff outside the quotes.
146 146
 		$work_str2 = '';
Please login to merge, or discard this patch.
src/Mouf/Database/TDBM/TDBMObject.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,6 @@
 block discarded – undo
18 18
  along with this program; if not, write to the Free Software
19 19
  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
20 20
  */
21
-use Doctrine\DBAL\Driver\Connection;
22 21
 
23 22
 
24 23
 /**
Please login to merge, or discard this patch.
Indentation   +113 added lines, -113 removed lines patch added patch discarded remove patch
@@ -35,117 +35,117 @@
 block discarded – undo
35 35
 class TDBMObject extends AbstractTDBMObject implements \ArrayAccess, \Iterator
36 36
 {
37 37
 
38
-    public function __get($var)
39
-    {
40
-        return $this->get($var);
41
-    }
42
-
43
-    /**
44
-     * Returns true if a column is set, false otherwise.
45
-     *
46
-     * @param string $var
47
-     * @return boolean
48
-     */
49
-    public function __isset($var)
50
-    {
51
-        return $this->has($var);
52
-    }
53
-
54
-    public function __set($var, $value)
55
-    {
56
-        $this->set($var, $value);
57
-    }
58
-
59
-    /**
60
-     * Implements array behaviour for our object.
61
-     *
62
-     * @param string $offset
63
-     * @param string $value
64
-     */
65
-    public function offsetSet($offset, $value)
66
-    {
67
-        $this->__set($offset, $value);
68
-    }
69
-
70
-    /**
71
-     * Implements array behaviour for our object.
72
-     *
73
-     * @param string $offset
74
-     * @return bool
75
-     */
76
-    public function offsetExists($offset)
77
-    {
78
-        $this->_dbLoadIfNotLoaded();
79
-        return isset($this->dbRow[$offset]);
80
-    }
81
-
82
-    /**
83
-     * Implements array behaviour for our object.
84
-     *
85
-     * @param string $offset
86
-     */
87
-    public function offsetUnset($offset)
88
-    {
89
-        $this->__set($offset, null);
90
-    }
91
-
92
-    /**
93
-     * Implements array behaviour for our object.
94
-     *
95
-     * @param string $offset
96
-     * @return mixed|null
97
-     */
98
-    public function offsetGet($offset)
99
-    {
100
-        return $this->__get($offset);
101
-    }
102
-
103
-    private $_validIterator = false;
104
-
105
-    /**
106
-     * Implements iterator behaviour for our object (so we can each column).
107
-     */
108
-    public function rewind()
109
-    {
110
-        $this->_dbLoadIfNotLoaded();
111
-        if (count($this->dbRow) > 0) {
112
-            $this->_validIterator = true;
113
-        } else {
114
-            $this->_validIterator = false;
115
-        }
116
-        reset($this->dbRow);
117
-    }
118
-
119
-    /**
120
-     * Implements iterator behaviour for our object (so we can each column).
121
-     */
122
-    public function next()
123
-    {
124
-        $val = next($this->dbRow);
125
-        $this->_validIterator = !($val === false);
126
-    }
127
-
128
-    /**
129
-     * Implements iterator behaviour for our object (so we can each column).
130
-     */
131
-    public function key()
132
-    {
133
-        return key($this->dbRow);
134
-    }
135
-
136
-    /**
137
-     * Implements iterator behaviour for our object (so we can each column).
138
-     */
139
-    public function current()
140
-    {
141
-        return current($this->dbRow);
142
-    }
143
-
144
-    /**
145
-     * Implements iterator behaviour for our object (so we can each column).
146
-     */
147
-    public function valid()
148
-    {
149
-        return $this->_validIterator;
150
-    }
38
+	public function __get($var)
39
+	{
40
+		return $this->get($var);
41
+	}
42
+
43
+	/**
44
+	 * Returns true if a column is set, false otherwise.
45
+	 *
46
+	 * @param string $var
47
+	 * @return boolean
48
+	 */
49
+	public function __isset($var)
50
+	{
51
+		return $this->has($var);
52
+	}
53
+
54
+	public function __set($var, $value)
55
+	{
56
+		$this->set($var, $value);
57
+	}
58
+
59
+	/**
60
+	 * Implements array behaviour for our object.
61
+	 *
62
+	 * @param string $offset
63
+	 * @param string $value
64
+	 */
65
+	public function offsetSet($offset, $value)
66
+	{
67
+		$this->__set($offset, $value);
68
+	}
69
+
70
+	/**
71
+	 * Implements array behaviour for our object.
72
+	 *
73
+	 * @param string $offset
74
+	 * @return bool
75
+	 */
76
+	public function offsetExists($offset)
77
+	{
78
+		$this->_dbLoadIfNotLoaded();
79
+		return isset($this->dbRow[$offset]);
80
+	}
81
+
82
+	/**
83
+	 * Implements array behaviour for our object.
84
+	 *
85
+	 * @param string $offset
86
+	 */
87
+	public function offsetUnset($offset)
88
+	{
89
+		$this->__set($offset, null);
90
+	}
91
+
92
+	/**
93
+	 * Implements array behaviour for our object.
94
+	 *
95
+	 * @param string $offset
96
+	 * @return mixed|null
97
+	 */
98
+	public function offsetGet($offset)
99
+	{
100
+		return $this->__get($offset);
101
+	}
102
+
103
+	private $_validIterator = false;
104
+
105
+	/**
106
+	 * Implements iterator behaviour for our object (so we can each column).
107
+	 */
108
+	public function rewind()
109
+	{
110
+		$this->_dbLoadIfNotLoaded();
111
+		if (count($this->dbRow) > 0) {
112
+			$this->_validIterator = true;
113
+		} else {
114
+			$this->_validIterator = false;
115
+		}
116
+		reset($this->dbRow);
117
+	}
118
+
119
+	/**
120
+	 * Implements iterator behaviour for our object (so we can each column).
121
+	 */
122
+	public function next()
123
+	{
124
+		$val = next($this->dbRow);
125
+		$this->_validIterator = !($val === false);
126
+	}
127
+
128
+	/**
129
+	 * Implements iterator behaviour for our object (so we can each column).
130
+	 */
131
+	public function key()
132
+	{
133
+		return key($this->dbRow);
134
+	}
135
+
136
+	/**
137
+	 * Implements iterator behaviour for our object (so we can each column).
138
+	 */
139
+	public function current()
140
+	{
141
+		return current($this->dbRow);
142
+	}
143
+
144
+	/**
145
+	 * Implements iterator behaviour for our object (so we can each column).
146
+	 */
147
+	public function valid()
148
+	{
149
+		return $this->_validIterator;
150
+	}
151 151
 }
152 152
\ No newline at end of file
Please login to merge, or discard this patch.
src/Mouf/Database/TDBM/TDBMService.php 2 patches
Unused Use Statements   -4 removed lines patch added patch discarded remove patch
@@ -22,16 +22,12 @@
 block discarded – undo
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 30
 use Mouf\Utils\Cache\CacheInterface;
34
-use SQLParser\Node\ColRef;
35 31
 
36 32
 /**
37 33
  * The TDBMService class is the main TDBM class. It provides methods to retrieve TDBMObject instances
Please login to merge, or discard this patch.
Indentation   +168 added lines, -168 removed lines patch added patch discarded remove patch
@@ -510,7 +510,7 @@  discard block
 block discarded – undo
510 510
 			case TDBMObjectStateEnum::STATE_DETACHED:
511 511
 				throw new TDBMInvalidOperationException('Cannot delete a detached object');
512 512
 			case TDBMObjectStateEnum::STATE_NEW:
513
-                $this->deleteManyToManyRelationships($object);
513
+				$this->deleteManyToManyRelationships($object);
514 514
 				foreach ($object->_getDbRows() as $dbRow) {
515 515
 					$this->removeFromToSaveObjectList($dbRow);
516 516
 				}
@@ -521,7 +521,7 @@  discard block
 block discarded – undo
521 521
 				}
522 522
 			case TDBMObjectStateEnum::STATE_NOT_LOADED:
523 523
 			case TDBMObjectStateEnum::STATE_LOADED:
524
-                $this->deleteManyToManyRelationships($object);
524
+				$this->deleteManyToManyRelationships($object);
525 525
 				// Let's delete db rows, in reverse order.
526 526
 				foreach (array_reverse($object->_getDbRows()) as $dbRow) {
527 527
 					$tableName = $dbRow->_getDbTableName();
@@ -541,63 +541,63 @@  discard block
 block discarded – undo
541 541
 		$object->_setStatus(TDBMObjectStateEnum::STATE_DELETED);
542 542
 	}
543 543
 
544
-    /**
545
-     * Removes all many to many relationships for this object.
546
-     * @param AbstractTDBMObject $object
547
-     */
548
-    private function deleteManyToManyRelationships(AbstractTDBMObject $object) {
549
-        foreach ($object->_getDbRows() as $tableName => $dbRow) {
550
-            $pivotTables = $this->tdbmSchemaAnalyzer->getPivotTableLinkedToTable($tableName);
551
-            foreach ($pivotTables as $pivotTable) {
552
-                $remoteBeans = $object->_getRelationships($pivotTable);
553
-                foreach ($remoteBeans as $remoteBean) {
554
-                    $object->_removeRelationship($pivotTable, $remoteBean);
555
-                }
556
-            }
557
-        }
558
-        $this->persistManyToManyRelationships($object);
559
-    }
560
-
561
-
562
-    /**
563
-     * This function removes the given object from the database. It will also remove all objects relied to the one given
564
-     * by parameter before all.
565
-     *
566
-     * Notice: if the object has a multiple primary key, the function will not work.
567
-     *
568
-     * @param AbstractTDBMObject $objToDelete
569
-     */
570
-    public function deleteCascade(AbstractTDBMObject $objToDelete) {
571
-        $this->deleteAllConstraintWithThisObject($objToDelete);
572
-        $this->delete($objToDelete);
573
-    }
574
-
575
-    /**
576
-     * This function is used only in TDBMService (private function)
577
-     * It will call deleteCascade function foreach object relied with a foreign key to the object given by parameter
578
-     *
579
-     * @param TDBMObject $obj
580
-     * @return TDBMObjectArray
581
-     */
582
-    private function deleteAllConstraintWithThisObject(TDBMObject $obj) {
583
-        $tableFrom = $this->connection->escapeDBItem($obj->_getDbTableName());
584
-        $constraints = $this->connection->getConstraintsFromTable($tableFrom);
585
-        foreach ($constraints as $constraint) {
586
-            $tableTo = $this->connection->escapeDBItem($constraint["table1"]);
587
-            $colFrom = $this->connection->escapeDBItem($constraint["col2"]);
588
-            $colTo = $this->connection->escapeDBItem($constraint["col1"]);
589
-            $idVarName = $this->connection->escapeDBItem($obj->getPrimaryKey()[0]);
590
-            $idValue = $this->connection->quoteSmart($obj->TDBMObject_id);
591
-            $sql = "SELECT DISTINCT ".$tableTo.".*"
592
-                    ." FROM ".$tableFrom
593
-                    ." LEFT JOIN ".$tableTo." ON ".$tableFrom.".".$colFrom." = ".$tableTo.".".$colTo
594
-                    ." WHERE ".$tableFrom.".".$idVarName."=".$idValue;
595
-            $result = $this->getObjectsFromSQL($constraint["table1"], $sql);
596
-            foreach ($result as $tdbmObj) {
597
-                $this->deleteCascade($tdbmObj);
598
-            }
599
-        }
600
-    }
544
+	/**
545
+	 * Removes all many to many relationships for this object.
546
+	 * @param AbstractTDBMObject $object
547
+	 */
548
+	private function deleteManyToManyRelationships(AbstractTDBMObject $object) {
549
+		foreach ($object->_getDbRows() as $tableName => $dbRow) {
550
+			$pivotTables = $this->tdbmSchemaAnalyzer->getPivotTableLinkedToTable($tableName);
551
+			foreach ($pivotTables as $pivotTable) {
552
+				$remoteBeans = $object->_getRelationships($pivotTable);
553
+				foreach ($remoteBeans as $remoteBean) {
554
+					$object->_removeRelationship($pivotTable, $remoteBean);
555
+				}
556
+			}
557
+		}
558
+		$this->persistManyToManyRelationships($object);
559
+	}
560
+
561
+
562
+	/**
563
+	 * This function removes the given object from the database. It will also remove all objects relied to the one given
564
+	 * by parameter before all.
565
+	 *
566
+	 * Notice: if the object has a multiple primary key, the function will not work.
567
+	 *
568
+	 * @param AbstractTDBMObject $objToDelete
569
+	 */
570
+	public function deleteCascade(AbstractTDBMObject $objToDelete) {
571
+		$this->deleteAllConstraintWithThisObject($objToDelete);
572
+		$this->delete($objToDelete);
573
+	}
574
+
575
+	/**
576
+	 * This function is used only in TDBMService (private function)
577
+	 * It will call deleteCascade function foreach object relied with a foreign key to the object given by parameter
578
+	 *
579
+	 * @param TDBMObject $obj
580
+	 * @return TDBMObjectArray
581
+	 */
582
+	private function deleteAllConstraintWithThisObject(TDBMObject $obj) {
583
+		$tableFrom = $this->connection->escapeDBItem($obj->_getDbTableName());
584
+		$constraints = $this->connection->getConstraintsFromTable($tableFrom);
585
+		foreach ($constraints as $constraint) {
586
+			$tableTo = $this->connection->escapeDBItem($constraint["table1"]);
587
+			$colFrom = $this->connection->escapeDBItem($constraint["col2"]);
588
+			$colTo = $this->connection->escapeDBItem($constraint["col1"]);
589
+			$idVarName = $this->connection->escapeDBItem($obj->getPrimaryKey()[0]);
590
+			$idValue = $this->connection->quoteSmart($obj->TDBMObject_id);
591
+			$sql = "SELECT DISTINCT ".$tableTo.".*"
592
+					." FROM ".$tableFrom
593
+					." LEFT JOIN ".$tableTo." ON ".$tableFrom.".".$colFrom." = ".$tableTo.".".$colTo
594
+					." WHERE ".$tableFrom.".".$idVarName."=".$idValue;
595
+			$result = $this->getObjectsFromSQL($constraint["table1"], $sql);
596
+			foreach ($result as $tdbmObj) {
597
+				$this->deleteCascade($tdbmObj);
598
+			}
599
+		}
600
+	}
601 601
 
602 602
 	/**
603 603
 	 * This function performs a save() of all the objects that have been modified.
@@ -997,8 +997,8 @@  discard block
 block discarded – undo
997 997
 	}
998 998
 
999 999
 	/**
1000
- 	* @param array<string, string> $tableToBeanMap
1001
- 	*/
1000
+	 * @param array<string, string> $tableToBeanMap
1001
+	 */
1002 1002
 	public function setTableToBeanMap(array $tableToBeanMap) {
1003 1003
 		$this->tableToBeanMap = $tableToBeanMap;
1004 1004
 	}
@@ -1045,7 +1045,7 @@  discard block
 block discarded – undo
1045 1045
 
1046 1046
 				// Let's save all references in NEW or DETACHED state (we need their primary key)
1047 1047
 				foreach ($references as $fkName => $reference) {
1048
-                    $refStatus = $reference->_getStatus();
1048
+					$refStatus = $reference->_getStatus();
1049 1049
 					if ($refStatus === TDBMObjectStateEnum::STATE_NEW || $refStatus === TDBMObjectStateEnum::STATE_DETACHED) {
1050 1050
 						$this->save($reference);
1051 1051
 					}
@@ -1204,94 +1204,94 @@  discard block
 block discarded – undo
1204 1204
 			throw new TDBMInvalidOperationException("This object has been deleted. It cannot be saved.");
1205 1205
 		}
1206 1206
 
1207
-        // Finally, let's save all the many to many relationships to this bean.
1208
-        $this->persistManyToManyRelationships($object);
1207
+		// Finally, let's save all the many to many relationships to this bean.
1208
+		$this->persistManyToManyRelationships($object);
1209 1209
 	}
1210 1210
 
1211
-    private function persistManyToManyRelationships(AbstractTDBMObject $object) {
1212
-        foreach ($object->_getCachedRelationships() as $pivotTableName => $storage) {
1213
-            $tableDescriptor = $this->tdbmSchemaAnalyzer->getSchema()->getTable($pivotTableName);
1214
-            list($localFk, $remoteFk) = $this->getPivotTableForeignKeys($pivotTableName, $object);
1215
-
1216
-            foreach ($storage as $remoteBean) {
1217
-                /* @var $remoteBean AbstractTDBMObject */
1218
-                $statusArr = $storage[$remoteBean];
1219
-                $status = $statusArr['status'];
1220
-                $reverse = $statusArr['reverse'];
1221
-                if ($reverse) {
1222
-                    continue;
1223
-                }
1224
-
1225
-                if ($status === 'new') {
1226
-                    $remoteBeanStatus = $remoteBean->_getStatus();
1227
-                    if ($remoteBeanStatus === TDBMObjectStateEnum::STATE_NEW || $remoteBeanStatus === TDBMObjectStateEnum::STATE_DETACHED) {
1228
-                        // Let's save remote bean if needed.
1229
-                        $this->save($remoteBean);
1230
-                    }
1211
+	private function persistManyToManyRelationships(AbstractTDBMObject $object) {
1212
+		foreach ($object->_getCachedRelationships() as $pivotTableName => $storage) {
1213
+			$tableDescriptor = $this->tdbmSchemaAnalyzer->getSchema()->getTable($pivotTableName);
1214
+			list($localFk, $remoteFk) = $this->getPivotTableForeignKeys($pivotTableName, $object);
1215
+
1216
+			foreach ($storage as $remoteBean) {
1217
+				/* @var $remoteBean AbstractTDBMObject */
1218
+				$statusArr = $storage[$remoteBean];
1219
+				$status = $statusArr['status'];
1220
+				$reverse = $statusArr['reverse'];
1221
+				if ($reverse) {
1222
+					continue;
1223
+				}
1231 1224
 
1232
-                    $filters = $this->getPivotFilters($object, $remoteBean, $localFk, $remoteFk);
1225
+				if ($status === 'new') {
1226
+					$remoteBeanStatus = $remoteBean->_getStatus();
1227
+					if ($remoteBeanStatus === TDBMObjectStateEnum::STATE_NEW || $remoteBeanStatus === TDBMObjectStateEnum::STATE_DETACHED) {
1228
+						// Let's save remote bean if needed.
1229
+						$this->save($remoteBean);
1230
+					}
1233 1231
 
1234
-                    $types = [];
1232
+					$filters = $this->getPivotFilters($object, $remoteBean, $localFk, $remoteFk);
1235 1233
 
1236
-                    foreach ($filters as $columnName => $value) {
1237
-                        $columnDescriptor = $tableDescriptor->getColumn($columnName);
1238
-                        $types[] = $columnDescriptor->getType();
1239
-                    }
1234
+					$types = [];
1235
+
1236
+					foreach ($filters as $columnName => $value) {
1237
+						$columnDescriptor = $tableDescriptor->getColumn($columnName);
1238
+						$types[] = $columnDescriptor->getType();
1239
+					}
1240 1240
 
1241
-                    $this->connection->insert($pivotTableName, $filters, $types);
1241
+					$this->connection->insert($pivotTableName, $filters, $types);
1242 1242
 
1243
-                    // Finally, let's mark relationships as saved.
1244
-                    $statusArr['status'] = 'loaded';
1245
-                    $storage[$remoteBean] = $statusArr;
1246
-                    $remoteStorage = $remoteBean->_getCachedRelationships()[$pivotTableName];
1247
-                    $remoteStatusArr = $remoteStorage[$object];
1248
-                    $remoteStatusArr['status'] = 'loaded';
1249
-                    $remoteStorage[$object] = $remoteStatusArr;
1243
+					// Finally, let's mark relationships as saved.
1244
+					$statusArr['status'] = 'loaded';
1245
+					$storage[$remoteBean] = $statusArr;
1246
+					$remoteStorage = $remoteBean->_getCachedRelationships()[$pivotTableName];
1247
+					$remoteStatusArr = $remoteStorage[$object];
1248
+					$remoteStatusArr['status'] = 'loaded';
1249
+					$remoteStorage[$object] = $remoteStatusArr;
1250 1250
 
1251
-                } elseif ($status === 'delete') {
1252
-                    $filters = $this->getPivotFilters($object, $remoteBean, $localFk, $remoteFk);
1251
+				} elseif ($status === 'delete') {
1252
+					$filters = $this->getPivotFilters($object, $remoteBean, $localFk, $remoteFk);
1253 1253
 
1254
-                    $types = [];
1254
+					$types = [];
1255 1255
 
1256
-                    foreach ($filters as $columnName => $value) {
1257
-                        $columnDescriptor = $tableDescriptor->getColumn($columnName);
1258
-                        $types[] = $columnDescriptor->getType();
1259
-                    }
1256
+					foreach ($filters as $columnName => $value) {
1257
+						$columnDescriptor = $tableDescriptor->getColumn($columnName);
1258
+						$types[] = $columnDescriptor->getType();
1259
+					}
1260
+
1261
+					$this->connection->delete($pivotTableName, $filters, $types);
1262
+
1263
+					// Finally, let's remove relationships completely from bean.
1264
+					$storage->detach($remoteBean);
1265
+					$remoteBean->_getCachedRelationships()[$pivotTableName]->detach($object);
1266
+				}
1267
+			}
1268
+		}
1269
+	}
1260 1270
 
1261
-                    $this->connection->delete($pivotTableName, $filters, $types);
1262
-
1263
-                    // Finally, let's remove relationships completely from bean.
1264
-                    $storage->detach($remoteBean);
1265
-                    $remoteBean->_getCachedRelationships()[$pivotTableName]->detach($object);
1266
-                }
1267
-            }
1268
-        }
1269
-    }
1270
-
1271
-    private function getPivotFilters(AbstractTDBMObject $localBean, AbstractTDBMObject $remoteBean, ForeignKeyConstraint $localFk, ForeignKeyConstraint $remoteFk) {
1272
-        $localBeanPk = $this->getPrimaryKeyValues($localBean);
1273
-        $remoteBeanPk = $this->getPrimaryKeyValues($remoteBean);
1274
-        $localColumns = $localFk->getLocalColumns();
1275
-        $remoteColumns = $remoteFk->getLocalColumns();
1276
-
1277
-        $localFilters = array_combine($localColumns, $localBeanPk);
1278
-        $remoteFilters = array_combine($remoteColumns, $remoteBeanPk);
1279
-
1280
-        return array_merge($localFilters, $remoteFilters);
1281
-    }
1282
-
1283
-    /**
1284
-     * Returns the "values" of the primary key.
1285
-     * This returns the primary key from the $primaryKey attribute, not the one stored in the columns.
1286
-     *
1287
-     * @param AbstractTDBMObject $bean
1288
-     * @return array numerically indexed array of values.
1289
-     */
1290
-    private function getPrimaryKeyValues(AbstractTDBMObject $bean) {
1291
-        $dbRows = $bean->_getDbRows();
1292
-        $dbRow = reset($dbRows);
1293
-        return array_values($dbRow->_getPrimaryKeys());
1294
-    }
1271
+	private function getPivotFilters(AbstractTDBMObject $localBean, AbstractTDBMObject $remoteBean, ForeignKeyConstraint $localFk, ForeignKeyConstraint $remoteFk) {
1272
+		$localBeanPk = $this->getPrimaryKeyValues($localBean);
1273
+		$remoteBeanPk = $this->getPrimaryKeyValues($remoteBean);
1274
+		$localColumns = $localFk->getLocalColumns();
1275
+		$remoteColumns = $remoteFk->getLocalColumns();
1276
+
1277
+		$localFilters = array_combine($localColumns, $localBeanPk);
1278
+		$remoteFilters = array_combine($remoteColumns, $remoteBeanPk);
1279
+
1280
+		return array_merge($localFilters, $remoteFilters);
1281
+	}
1282
+
1283
+	/**
1284
+	 * Returns the "values" of the primary key.
1285
+	 * This returns the primary key from the $primaryKey attribute, not the one stored in the columns.
1286
+	 *
1287
+	 * @param AbstractTDBMObject $bean
1288
+	 * @return array numerically indexed array of values.
1289
+	 */
1290
+	private function getPrimaryKeyValues(AbstractTDBMObject $bean) {
1291
+		$dbRows = $bean->_getDbRows();
1292
+		$dbRow = reset($dbRows);
1293
+		return array_values($dbRow->_getPrimaryKeys());
1294
+	}
1295 1295
 
1296 1296
 	/**
1297 1297
 	 * Returns a unique hash used to store the object based on its primary key.
@@ -1774,39 +1774,39 @@  discard block
 block discarded – undo
1774 1774
 	 */
1775 1775
 	public function _getRelatedBeans($pivotTableName, AbstractTDBMObject $bean) {
1776 1776
 
1777
-        list($localFk, $remoteFk) = $this->getPivotTableForeignKeys($pivotTableName, $bean);
1778
-        /* @var $localFk ForeignKeyConstraint */
1779
-        /* @var $remoteFk ForeignKeyConstraint */
1780
-        $remoteTable = $remoteFk->getForeignTableName();
1777
+		list($localFk, $remoteFk) = $this->getPivotTableForeignKeys($pivotTableName, $bean);
1778
+		/* @var $localFk ForeignKeyConstraint */
1779
+		/* @var $remoteFk ForeignKeyConstraint */
1780
+		$remoteTable = $remoteFk->getForeignTableName();
1781 1781
 
1782 1782
 
1783
-        $primaryKeys = $this->getPrimaryKeyValues($bean);
1784
-        $columnNames = array_map(function($name) use ($pivotTableName) { return $pivotTableName.'.'.$name; }, $localFk->getLocalColumns());
1783
+		$primaryKeys = $this->getPrimaryKeyValues($bean);
1784
+		$columnNames = array_map(function($name) use ($pivotTableName) { return $pivotTableName.'.'.$name; }, $localFk->getLocalColumns());
1785 1785
 
1786
-        $filter = array_combine($columnNames, $primaryKeys);
1786
+		$filter = array_combine($columnNames, $primaryKeys);
1787 1787
 
1788
-        return $this->findObjects($remoteTable, $filter);
1788
+		return $this->findObjects($remoteTable, $filter);
1789 1789
 	}
1790 1790
 
1791
-    /**
1792
-     * @param $pivotTableName
1793
-     * @param AbstractTDBMObject $bean The LOCAL bean
1794
-     * @return ForeignKeyConstraint[] First item: the LOCAL bean, second item: the REMOTE bean.
1795
-     * @throws TDBMException
1796
-     */
1797
-    private function getPivotTableForeignKeys($pivotTableName, AbstractTDBMObject $bean) {
1798
-        $fks = array_values($this->tdbmSchemaAnalyzer->getSchema()->getTable($pivotTableName)->getForeignKeys());
1799
-        $table1 = $fks[0]->getForeignTableName();
1800
-        $table2 = $fks[1]->getForeignTableName();
1801
-
1802
-        $beanTables = array_map(function(DbRow $dbRow) { return $dbRow->_getDbTableName(); }, $bean->_getDbRows());
1803
-
1804
-        if (in_array($table1, $beanTables)) {
1805
-            return [$fks[0], $fks[1]];
1806
-        } elseif (in_array($table2, $beanTables)) {
1807
-            return [$fks[1], $fks[0]];
1808
-        } else {
1809
-            throw new TDBMException("Unexpected bean type in getPivotTableForeignKeys. Awaiting beans from table {$table1} and {$table2}");
1810
-        }
1811
-    }
1791
+	/**
1792
+	 * @param $pivotTableName
1793
+	 * @param AbstractTDBMObject $bean The LOCAL bean
1794
+	 * @return ForeignKeyConstraint[] First item: the LOCAL bean, second item: the REMOTE bean.
1795
+	 * @throws TDBMException
1796
+	 */
1797
+	private function getPivotTableForeignKeys($pivotTableName, AbstractTDBMObject $bean) {
1798
+		$fks = array_values($this->tdbmSchemaAnalyzer->getSchema()->getTable($pivotTableName)->getForeignKeys());
1799
+		$table1 = $fks[0]->getForeignTableName();
1800
+		$table2 = $fks[1]->getForeignTableName();
1801
+
1802
+		$beanTables = array_map(function(DbRow $dbRow) { return $dbRow->_getDbTableName(); }, $bean->_getDbRows());
1803
+
1804
+		if (in_array($table1, $beanTables)) {
1805
+			return [$fks[0], $fks[1]];
1806
+		} elseif (in_array($table2, $beanTables)) {
1807
+			return [$fks[1], $fks[0]];
1808
+		} else {
1809
+			throw new TDBMException("Unexpected bean type in getPivotTableForeignKeys. Awaiting beans from table {$table1} and {$table2}");
1810
+		}
1811
+	}
1812 1812
 }
Please login to merge, or discard this patch.
src/Mouf/Database/TDBM/Utils/TDBMDaoGenerator.php 2 patches
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -2,8 +2,6 @@
 block discarded – undo
2 2
 namespace Mouf\Database\TDBM\Utils;
3 3
 
4 4
 use Doctrine\DBAL\Driver\Connection;
5
-use Doctrine\DBAL\Schema\Column;
6
-use Doctrine\DBAL\Schema\ForeignKeyConstraint;
7 5
 use Doctrine\DBAL\Schema\Schema;
8 6
 use Doctrine\DBAL\Schema\Table;
9 7
 use Doctrine\DBAL\Types\Type;
Please login to merge, or discard this patch.
Indentation   +374 added lines, -374 removed lines patch added patch discarded remove patch
@@ -19,178 +19,178 @@  discard block
 block discarded – undo
19 19
  */
20 20
 class TDBMDaoGenerator {
21 21
 
22
-    /**
23
-     * 
24
-     * @var SchemaAnalyzer
25
-     */
26
-    private $schemaAnalyzer;
27
-
28
-    /**
29
-     *
30
-     * @var Schema
31
-     */
32
-    private $schema;
33
-
34
-    /**
35
-     * The root directory of the project.
36
-     *
37
-     * @var string
38
-     */
39
-    private $rootPath;
40
-
41
-    /**
42
-     * @var TDBMSchemaAnalyzer
43
-     */
44
-    private $tdbmSchemaAnalyzer;
45
-
46
-    /**
47
-     * Constructor.
48
-     *
49
-     * @param Connection $dbConnection The connection to the database.
50
-     */
51
-    public function __construct(SchemaAnalyzer $schemaAnalyzer, Schema $schema, TDBMSchemaAnalyzer $tdbmSchemaAnalyzer) {
52
-        $this->schemaAnalyzer = $schemaAnalyzer;
53
-        $this->schema = $schema;
54
-        $this->tdbmSchemaAnalyzer = $tdbmSchemaAnalyzer;
55
-        $this->rootPath = __DIR__."/../../../../../../../../";
56
-    }
57
-
58
-    /**
59
-     * Generates all the daos and beans.
60
-     *
61
-     * @param string $daoFactoryClassName The classe name of the DAO factory
62
-     * @param string $daonamespace The namespace for the DAOs, without trailing \
63
-     * @param string $beannamespace The Namespace for the beans, without trailing \
64
-     * @param bool $storeInUtc If the generated daos should store the date in UTC timezone instead of user's timezone.
65
-     * @return \string[] the list of tables
66
-     * @throws TDBMException
67
-     */
68
-    public function generateAllDaosAndBeans($daoFactoryClassName, $daonamespace, $beannamespace, $storeInUtc) {
69
-        // TODO: extract ClassNameMapper in its own package!
70
-        $classNameMapper = ClassNameMapper::createFromComposerFile($this->rootPath.'composer.json');
71
-
72
-        // TODO: check that no class name ends with "Base". Otherwise, there will be name clash.
73
-
74
-        $tableList = $this->schema->getTables();
75
-
76
-        // Remove all beans and daos from junction tables
77
-        $junctionTables = $this->schemaAnalyzer->detectJunctionTables();
78
-        $junctionTableNames = array_map(function(Table $table) {
79
-            return $table->getName();
80
-        }, $junctionTables);
81
-
82
-        $tableList = array_filter($tableList, function(Table $table) use ($junctionTableNames) {
83
-            return !in_array($table->getName(), $junctionTableNames);
84
-        });
85
-
86
-        foreach ($tableList as $table) {
87
-            $this->generateDaoAndBean($table, $daonamespace, $beannamespace, $classNameMapper, $storeInUtc);
88
-        }
22
+	/**
23
+	 * 
24
+	 * @var SchemaAnalyzer
25
+	 */
26
+	private $schemaAnalyzer;
27
+
28
+	/**
29
+	 *
30
+	 * @var Schema
31
+	 */
32
+	private $schema;
33
+
34
+	/**
35
+	 * The root directory of the project.
36
+	 *
37
+	 * @var string
38
+	 */
39
+	private $rootPath;
40
+
41
+	/**
42
+	 * @var TDBMSchemaAnalyzer
43
+	 */
44
+	private $tdbmSchemaAnalyzer;
45
+
46
+	/**
47
+	 * Constructor.
48
+	 *
49
+	 * @param Connection $dbConnection The connection to the database.
50
+	 */
51
+	public function __construct(SchemaAnalyzer $schemaAnalyzer, Schema $schema, TDBMSchemaAnalyzer $tdbmSchemaAnalyzer) {
52
+		$this->schemaAnalyzer = $schemaAnalyzer;
53
+		$this->schema = $schema;
54
+		$this->tdbmSchemaAnalyzer = $tdbmSchemaAnalyzer;
55
+		$this->rootPath = __DIR__."/../../../../../../../../";
56
+	}
57
+
58
+	/**
59
+	 * Generates all the daos and beans.
60
+	 *
61
+	 * @param string $daoFactoryClassName The classe name of the DAO factory
62
+	 * @param string $daonamespace The namespace for the DAOs, without trailing \
63
+	 * @param string $beannamespace The Namespace for the beans, without trailing \
64
+	 * @param bool $storeInUtc If the generated daos should store the date in UTC timezone instead of user's timezone.
65
+	 * @return \string[] the list of tables
66
+	 * @throws TDBMException
67
+	 */
68
+	public function generateAllDaosAndBeans($daoFactoryClassName, $daonamespace, $beannamespace, $storeInUtc) {
69
+		// TODO: extract ClassNameMapper in its own package!
70
+		$classNameMapper = ClassNameMapper::createFromComposerFile($this->rootPath.'composer.json');
71
+
72
+		// TODO: check that no class name ends with "Base". Otherwise, there will be name clash.
73
+
74
+		$tableList = $this->schema->getTables();
75
+
76
+		// Remove all beans and daos from junction tables
77
+		$junctionTables = $this->schemaAnalyzer->detectJunctionTables();
78
+		$junctionTableNames = array_map(function(Table $table) {
79
+			return $table->getName();
80
+		}, $junctionTables);
81
+
82
+		$tableList = array_filter($tableList, function(Table $table) use ($junctionTableNames) {
83
+			return !in_array($table->getName(), $junctionTableNames);
84
+		});
85
+
86
+		foreach ($tableList as $table) {
87
+			$this->generateDaoAndBean($table, $daonamespace, $beannamespace, $classNameMapper, $storeInUtc);
88
+		}
89 89
         
90
-        $this->generateFactory($tableList, $daoFactoryClassName, $daonamespace, $classNameMapper);
90
+		$this->generateFactory($tableList, $daoFactoryClassName, $daonamespace, $classNameMapper);
91 91
 
92
-        // Ok, let's return the list of all tables.
93
-        // These will be used by the calling script to create Mouf instances.
92
+		// Ok, let's return the list of all tables.
93
+		// These will be used by the calling script to create Mouf instances.
94 94
         
95
-        return array_map(function(Table $table) { return $table->getName(); },$tableList);
96
-    }
95
+		return array_map(function(Table $table) { return $table->getName(); },$tableList);
96
+	}
97 97
     
98
-    /**
99
-     * Generates in one method call the daos and the beans for one table.
100
-     * 
101
-     * @param $tableName
102
-     */
103
-    public function generateDaoAndBean(Table $table, $daonamespace, $beannamespace, ClassNameMapper $classNameMapper, $storeInUtc) {
98
+	/**
99
+	 * Generates in one method call the daos and the beans for one table.
100
+	 * 
101
+	 * @param $tableName
102
+	 */
103
+	public function generateDaoAndBean(Table $table, $daonamespace, $beannamespace, ClassNameMapper $classNameMapper, $storeInUtc) {
104 104
 		$tableName = $table->getName();
105
-        $daoName = $this->getDaoNameFromTableName($tableName);
106
-        $beanName = $this->getBeanNameFromTableName($tableName);
107
-        $baseBeanName = $this->getBaseBeanNameFromTableName($tableName);
108
-        $baseDaoName = $this->getBaseDaoNameFromTableName($tableName);
109
-
110
-        $this->generateBean($beanName, $baseBeanName, $table, $beannamespace, $classNameMapper, $storeInUtc);
111
-        $this->generateDao($daoName, $baseDaoName, $beanName, $table, $daonamespace, $beannamespace, $classNameMapper);
112
-    }
105
+		$daoName = $this->getDaoNameFromTableName($tableName);
106
+		$beanName = $this->getBeanNameFromTableName($tableName);
107
+		$baseBeanName = $this->getBaseBeanNameFromTableName($tableName);
108
+		$baseDaoName = $this->getBaseDaoNameFromTableName($tableName);
109
+
110
+		$this->generateBean($beanName, $baseBeanName, $table, $beannamespace, $classNameMapper, $storeInUtc);
111
+		$this->generateDao($daoName, $baseDaoName, $beanName, $table, $daonamespace, $beannamespace, $classNameMapper);
112
+	}
113 113
     
114
-    /**
115
-     * Returns the name of the bean class from the table name.
116
-     * 
117
-     * @param $tableName
118
-     * @return string
119
-     */
120
-    public static function getBeanNameFromTableName($tableName) {
121
-        return TDBMDaoGenerator::toSingular(TDBMDaoGenerator::toCamelCase($tableName))."Bean";
122
-    }
114
+	/**
115
+	 * Returns the name of the bean class from the table name.
116
+	 * 
117
+	 * @param $tableName
118
+	 * @return string
119
+	 */
120
+	public static function getBeanNameFromTableName($tableName) {
121
+		return TDBMDaoGenerator::toSingular(TDBMDaoGenerator::toCamelCase($tableName))."Bean";
122
+	}
123 123
     
124
-    /**
125
-     * Returns the name of the DAO class from the table name.
126
-     * 
127
-     * @param $tableName
128
-     * @return string
129
-     */
130
-    public static function getDaoNameFromTableName($tableName) {
131
-        return TDBMDaoGenerator::toSingular(TDBMDaoGenerator::toCamelCase($tableName))."Dao";
132
-    }
124
+	/**
125
+	 * Returns the name of the DAO class from the table name.
126
+	 * 
127
+	 * @param $tableName
128
+	 * @return string
129
+	 */
130
+	public static function getDaoNameFromTableName($tableName) {
131
+		return TDBMDaoGenerator::toSingular(TDBMDaoGenerator::toCamelCase($tableName))."Dao";
132
+	}
133 133
     
134
-    /**
135
-     * Returns the name of the base bean class from the table name.
136
-     * 
137
-     * @param $tableName
138
-     * @return string
139
-     */
140
-    public static function getBaseBeanNameFromTableName($tableName) {
141
-        return TDBMDaoGenerator::toSingular(TDBMDaoGenerator::toCamelCase($tableName))."BaseBean";
142
-    }
143
-
144
-    /**
145
-     * Returns the name of the base DAO class from the table name.
146
-     *
147
-     * @param $tableName
148
-     * @return string
149
-     */
150
-    public static function getBaseDaoNameFromTableName($tableName) {
151
-        return TDBMDaoGenerator::toSingular(TDBMDaoGenerator::toCamelCase($tableName))."BaseDao";
152
-    }
153
-
154
-    /**
155
-     * Writes the PHP bean file with all getters and setters from the table passed in parameter.
156
-     *
157
-     * @param string $className The name of the class
158
-     * @param string $baseClassName The name of the base class which will be extended (name only, no directory)
159
-     * @param string $tableName The name of the table
160
-     * @param string $beannamespace The namespace of the bean
161
-     * @param ClassNameMapper $classNameMapper
162
-     * @throws TDBMException
163
-     */
164
-    public function generateBean($className, $baseClassName, Table $table, $beannamespace, ClassNameMapper $classNameMapper, $storeInUtc) {
165
-
166
-        $beanDescriptor = new BeanDescriptor($table, $this->schemaAnalyzer, $this->schema);
167
-
168
-        $str = $beanDescriptor->generatePhpCode($beannamespace);
169
-
170
-        $possibleBaseFileNames = $classNameMapper->getPossibleFileNames($beannamespace."\\".$baseClassName);
171
-        if (!$possibleBaseFileNames) {
172
-            throw new TDBMException('Sorry, autoload namespace issue. The class "'.$beannamespace."\\".$baseClassName.'" is not autoloadable.');
173
-        }
174
-        $possibleBaseFileName = $this->rootPath.$possibleBaseFileNames[0];
175
-
176
-        $this->ensureDirectoryExist($possibleBaseFileName);
177
-        file_put_contents($possibleBaseFileName, $str);
178
-        @chmod($possibleBaseFileName, 0664);
179
-
180
-
181
-
182
-        $possibleFileNames = $classNameMapper->getPossibleFileNames($beannamespace."\\".$className);
183
-        if (!$possibleFileNames) {
184
-            // @codeCoverageIgnoreStart
185
-            throw new TDBMException('Sorry, autoload namespace issue. The class "'.$beannamespace."\\".$className.'" is not autoloadable.');
186
-            // @codeCoverageIgnoreEnd
187
-        }
188
-        $possibleFileName = $this->rootPath.$possibleFileNames[0];
189
-
190
-        if (!file_exists($possibleFileName)) {
191
-            $tableName = $table->getName();
192
-
193
-            $str = "<?php
134
+	/**
135
+	 * Returns the name of the base bean class from the table name.
136
+	 * 
137
+	 * @param $tableName
138
+	 * @return string
139
+	 */
140
+	public static function getBaseBeanNameFromTableName($tableName) {
141
+		return TDBMDaoGenerator::toSingular(TDBMDaoGenerator::toCamelCase($tableName))."BaseBean";
142
+	}
143
+
144
+	/**
145
+	 * Returns the name of the base DAO class from the table name.
146
+	 *
147
+	 * @param $tableName
148
+	 * @return string
149
+	 */
150
+	public static function getBaseDaoNameFromTableName($tableName) {
151
+		return TDBMDaoGenerator::toSingular(TDBMDaoGenerator::toCamelCase($tableName))."BaseDao";
152
+	}
153
+
154
+	/**
155
+	 * Writes the PHP bean file with all getters and setters from the table passed in parameter.
156
+	 *
157
+	 * @param string $className The name of the class
158
+	 * @param string $baseClassName The name of the base class which will be extended (name only, no directory)
159
+	 * @param string $tableName The name of the table
160
+	 * @param string $beannamespace The namespace of the bean
161
+	 * @param ClassNameMapper $classNameMapper
162
+	 * @throws TDBMException
163
+	 */
164
+	public function generateBean($className, $baseClassName, Table $table, $beannamespace, ClassNameMapper $classNameMapper, $storeInUtc) {
165
+
166
+		$beanDescriptor = new BeanDescriptor($table, $this->schemaAnalyzer, $this->schema);
167
+
168
+		$str = $beanDescriptor->generatePhpCode($beannamespace);
169
+
170
+		$possibleBaseFileNames = $classNameMapper->getPossibleFileNames($beannamespace."\\".$baseClassName);
171
+		if (!$possibleBaseFileNames) {
172
+			throw new TDBMException('Sorry, autoload namespace issue. The class "'.$beannamespace."\\".$baseClassName.'" is not autoloadable.');
173
+		}
174
+		$possibleBaseFileName = $this->rootPath.$possibleBaseFileNames[0];
175
+
176
+		$this->ensureDirectoryExist($possibleBaseFileName);
177
+		file_put_contents($possibleBaseFileName, $str);
178
+		@chmod($possibleBaseFileName, 0664);
179
+
180
+
181
+
182
+		$possibleFileNames = $classNameMapper->getPossibleFileNames($beannamespace."\\".$className);
183
+		if (!$possibleFileNames) {
184
+			// @codeCoverageIgnoreStart
185
+			throw new TDBMException('Sorry, autoload namespace issue. The class "'.$beannamespace."\\".$className.'" is not autoloadable.');
186
+			// @codeCoverageIgnoreEnd
187
+		}
188
+		$possibleFileName = $this->rootPath.$possibleFileNames[0];
189
+
190
+		if (!file_exists($possibleFileName)) {
191
+			$tableName = $table->getName();
192
+
193
+			$str = "<?php
194 194
 /*
195 195
  * This file has been automatically generated by TDBM.
196 196
  * You can edit this file as it will not be overwritten.
@@ -205,44 +205,44 @@  discard block
 block discarded – undo
205 205
 {
206 206
 
207 207
 }";
208
-            $this->ensureDirectoryExist($possibleFileName);
209
-            file_put_contents($possibleFileName ,$str);
210
-            @chmod($possibleFileName, 0664);
211
-        }
212
-    }
213
-
214
-    /**
215
-     * Writes the PHP bean DAO with simple functions to create/get/save objects.
216
-     *
217
-     * @param string $fileName The file that will be written (without the directory)
218
-     * @param string $className The name of the class
219
-     * @param string $tableName The name of the table
220
-     */
221
-    public function generateDao($className, $baseClassName, $beanClassName, Table $table, $daonamespace, $beannamespace, ClassNameMapper $classNameMapper) {
222
-        $tableName = $table->getName();
223
-        $primaryKeyColumns = $table->getPrimaryKeyColumns();
224
-
225
-        $defaultSort = null;
226
-        foreach ($table->getColumns() as $column) {
227
-            $comments = $column->getComment();
228
-            $matches = array();
229
-            if (preg_match('/@defaultSort(\((desc|asc)\))*/', $comments, $matches) != 0){
230
-                $defaultSort = $data['column_name'];
231
-                if (count($matches == 3)){
232
-                    $defaultSortDirection = $matches[2];
233
-                }else{
234
-                    $defaultSortDirection = 'ASC';
235
-                }
236
-            }
237
-        }
208
+			$this->ensureDirectoryExist($possibleFileName);
209
+			file_put_contents($possibleFileName ,$str);
210
+			@chmod($possibleFileName, 0664);
211
+		}
212
+	}
213
+
214
+	/**
215
+	 * Writes the PHP bean DAO with simple functions to create/get/save objects.
216
+	 *
217
+	 * @param string $fileName The file that will be written (without the directory)
218
+	 * @param string $className The name of the class
219
+	 * @param string $tableName The name of the table
220
+	 */
221
+	public function generateDao($className, $baseClassName, $beanClassName, Table $table, $daonamespace, $beannamespace, ClassNameMapper $classNameMapper) {
222
+		$tableName = $table->getName();
223
+		$primaryKeyColumns = $table->getPrimaryKeyColumns();
224
+
225
+		$defaultSort = null;
226
+		foreach ($table->getColumns() as $column) {
227
+			$comments = $column->getComment();
228
+			$matches = array();
229
+			if (preg_match('/@defaultSort(\((desc|asc)\))*/', $comments, $matches) != 0){
230
+				$defaultSort = $data['column_name'];
231
+				if (count($matches == 3)){
232
+					$defaultSortDirection = $matches[2];
233
+				}else{
234
+					$defaultSortDirection = 'ASC';
235
+				}
236
+			}
237
+		}
238 238
 
239
-        // FIXME: lowercase tables with _ in the name should work!
240
-        $tableCamel = self::toSingular(self::toCamelCase($tableName));
239
+		// FIXME: lowercase tables with _ in the name should work!
240
+		$tableCamel = self::toSingular(self::toCamelCase($tableName));
241 241
         
242
-        $beanClassWithoutNameSpace = $beanClassName;
243
-        $beanClassName = $beannamespace."\\".$beanClassName;
242
+		$beanClassWithoutNameSpace = $beanClassName;
243
+		$beanClassName = $beannamespace."\\".$beanClassName;
244 244
         
245
-        $str = "<?php
245
+		$str = "<?php
246 246
 
247 247
 /*
248 248
  * This file has been automatically generated by TDBM.
@@ -329,9 +329,9 @@  discard block
 block discarded – undo
329 329
     }
330 330
     ";
331 331
 
332
-        if (count($primaryKeyColumns) === 1) {
333
-            $primaryKeyColumn = $primaryKeyColumns[0];
334
-            $str .= "
332
+		if (count($primaryKeyColumns) === 1) {
333
+			$primaryKeyColumn = $primaryKeyColumns[0];
334
+			$str .= "
335 335
     /**
336 336
      * Get $beanClassWithoutNameSpace specified by its ID (its primary key)
337 337
      * If the primary key does not exist, an exception is thrown.
@@ -346,8 +346,8 @@  discard block
 block discarded – undo
346 346
         return \$this->tdbmService->findObjectByPk('$tableName', ['$primaryKeyColumn' => \$id], [], \$lazyLoading);
347 347
     }
348 348
     ";
349
-        }
350
-        $str .= "
349
+		}
350
+		$str .= "
351 351
     /**
352 352
      * Deletes the $beanClassWithoutNameSpace passed in parameter.
353 353
      *
@@ -407,29 +407,29 @@  discard block
 block discarded – undo
407 407
 }
408 408
 ";
409 409
 
410
-        $possibleBaseFileNames = $classNameMapper->getPossibleFileNames($daonamespace."\\".$baseClassName);
411
-        if (!$possibleBaseFileNames) {
412
-            // @codeCoverageIgnoreStart
413
-            throw new TDBMException('Sorry, autoload namespace issue. The class "'.$baseClassName.'" is not autoloadable.');
414
-            // @codeCoverageIgnoreEnd
415
-        }
416
-        $possibleBaseFileName = $this->rootPath.$possibleBaseFileNames[0];
417
-
418
-        $this->ensureDirectoryExist($possibleBaseFileName);
419
-        file_put_contents($possibleBaseFileName ,$str);
420
-        @chmod($possibleBaseFileName, 0664);
421
-
422
-        $possibleFileNames = $classNameMapper->getPossibleFileNames($daonamespace."\\".$className);
423
-        if (!$possibleFileNames) {
424
-            // @codeCoverageIgnoreStart
425
-            throw new TDBMException('Sorry, autoload namespace issue. The class "'.$className.'" is not autoloadable.');
426
-            // @codeCoverageIgnoreEnd
427
-        }
428
-        $possibleFileName = $this->rootPath.$possibleFileNames[0];
410
+		$possibleBaseFileNames = $classNameMapper->getPossibleFileNames($daonamespace."\\".$baseClassName);
411
+		if (!$possibleBaseFileNames) {
412
+			// @codeCoverageIgnoreStart
413
+			throw new TDBMException('Sorry, autoload namespace issue. The class "'.$baseClassName.'" is not autoloadable.');
414
+			// @codeCoverageIgnoreEnd
415
+		}
416
+		$possibleBaseFileName = $this->rootPath.$possibleBaseFileNames[0];
417
+
418
+		$this->ensureDirectoryExist($possibleBaseFileName);
419
+		file_put_contents($possibleBaseFileName ,$str);
420
+		@chmod($possibleBaseFileName, 0664);
421
+
422
+		$possibleFileNames = $classNameMapper->getPossibleFileNames($daonamespace."\\".$className);
423
+		if (!$possibleFileNames) {
424
+			// @codeCoverageIgnoreStart
425
+			throw new TDBMException('Sorry, autoload namespace issue. The class "'.$className.'" is not autoloadable.');
426
+			// @codeCoverageIgnoreEnd
427
+		}
428
+		$possibleFileName = $this->rootPath.$possibleFileNames[0];
429 429
         
430
-        // Now, let's generate the "editable" class
431
-        if (!file_exists($possibleFileName)) {
432
-            $str = "<?php
430
+		// Now, let's generate the "editable" class
431
+		if (!file_exists($possibleFileName)) {
432
+			$str = "<?php
433 433
 
434 434
 /*
435 435
  * This file has been automatically generated by TDBM.
@@ -446,23 +446,23 @@  discard block
 block discarded – undo
446 446
 
447 447
 }
448 448
 ";
449
-            $this->ensureDirectoryExist($possibleFileName);
450
-            file_put_contents($possibleFileName ,$str);
451
-            @chmod($possibleFileName, 0664);
452
-        }
453
-    }
449
+			$this->ensureDirectoryExist($possibleFileName);
450
+			file_put_contents($possibleFileName ,$str);
451
+			@chmod($possibleFileName, 0664);
452
+		}
453
+	}
454 454
 
455 455
 
456 456
 
457
-    /**
458
-     * Generates the factory bean.
459
-     * 
460
-     * @param Table[] $tableList
461
-     */
462
-    private function generateFactory(array $tableList, $daoFactoryClassName, $daoNamespace, ClassNameMapper $classNameMapper) {
463
-        // For each table, let's write a property.
457
+	/**
458
+	 * Generates the factory bean.
459
+	 * 
460
+	 * @param Table[] $tableList
461
+	 */
462
+	private function generateFactory(array $tableList, $daoFactoryClassName, $daoNamespace, ClassNameMapper $classNameMapper) {
463
+		// For each table, let's write a property.
464 464
         
465
-        $str = "<?php
465
+		$str = "<?php
466 466
 
467 467
 /*
468 468
  * This file has been automatically generated by TDBM.
@@ -479,12 +479,12 @@  discard block
 block discarded – undo
479 479
 {
480 480
 ";
481 481
 
482
-        foreach ($tableList as $table) {
483
-            $tableName = $table->getName();
484
-            $daoClassName = $this->getDaoNameFromTableName($tableName);
485
-            $daoInstanceName = self::toVariableName($daoClassName);
482
+		foreach ($tableList as $table) {
483
+			$tableName = $table->getName();
484
+			$daoClassName = $this->getDaoNameFromTableName($tableName);
485
+			$daoInstanceName = self::toVariableName($daoClassName);
486 486
             
487
-            $str .= '    /**
487
+			$str .= '    /**
488 488
      * @var '.$daoClassName.'
489 489
      */
490 490
     private $'.$daoInstanceName.';
@@ -509,143 +509,143 @@  discard block
 block discarded – undo
509 509
     }
510 510
     
511 511
 ';
512
-        }
512
+		}
513 513
         
514 514
         
515
-        $str .= '
515
+		$str .= '
516 516
 }
517 517
 ';
518 518
 
519
-        $possibleFileNames = $classNameMapper->getPossibleFileNames($daoNamespace."\\".$daoFactoryClassName);
520
-        if (!$possibleFileNames) {
521
-            throw new TDBMException('Sorry, autoload namespace issue. The class "'.$daoNamespace."\\".$daoFactoryClassName.'" is not autoloadable.');
522
-        }
523
-        $possibleFileName = $this->rootPath.$possibleFileNames[0];
524
-
525
-        $this->ensureDirectoryExist($possibleFileName);
526
-        file_put_contents($possibleFileName ,$str);
527
-    }
528
-
529
-    /**
530
-     * Transforms a string to camelCase (except the first letter will be uppercase too).
531
-     * Underscores and spaces are removed and the first letter after the underscore is uppercased.
532
-     * 
533
-     * @param $str string
534
-     * @return string
535
-     */
536
-    public static function toCamelCase($str) {
537
-        $str = strtoupper(substr($str,0,1)).substr($str,1);
538
-        while (true) {
539
-            if (strpos($str, "_") === false && strpos($str, " ") === false) {
540
-                break;
519
+		$possibleFileNames = $classNameMapper->getPossibleFileNames($daoNamespace."\\".$daoFactoryClassName);
520
+		if (!$possibleFileNames) {
521
+			throw new TDBMException('Sorry, autoload namespace issue. The class "'.$daoNamespace."\\".$daoFactoryClassName.'" is not autoloadable.');
522
+		}
523
+		$possibleFileName = $this->rootPath.$possibleFileNames[0];
524
+
525
+		$this->ensureDirectoryExist($possibleFileName);
526
+		file_put_contents($possibleFileName ,$str);
527
+	}
528
+
529
+	/**
530
+	 * Transforms a string to camelCase (except the first letter will be uppercase too).
531
+	 * Underscores and spaces are removed and the first letter after the underscore is uppercased.
532
+	 * 
533
+	 * @param $str string
534
+	 * @return string
535
+	 */
536
+	public static function toCamelCase($str) {
537
+		$str = strtoupper(substr($str,0,1)).substr($str,1);
538
+		while (true) {
539
+			if (strpos($str, "_") === false && strpos($str, " ") === false) {
540
+				break;
541 541
 			}
542 542
                 
543
-            $pos = strpos($str, "_");
544
-            if ($pos === false) {
545
-                $pos = strpos($str, " ");
546
-            }
547
-            $before = substr($str,0,$pos);
548
-            $after = substr($str,$pos+1);
549
-            $str = $before.strtoupper(substr($after,0,1)).substr($after,1);
550
-        }
551
-        return $str;
552
-    }
543
+			$pos = strpos($str, "_");
544
+			if ($pos === false) {
545
+				$pos = strpos($str, " ");
546
+			}
547
+			$before = substr($str,0,$pos);
548
+			$after = substr($str,$pos+1);
549
+			$str = $before.strtoupper(substr($after,0,1)).substr($after,1);
550
+		}
551
+		return $str;
552
+	}
553 553
     
554
-    /**
555
-     * Tries to put string to the singular form (if it is plural).
556
-     * We assume the table names are in english.
557
-     *
558
-     * @param $str string
559
-     * @return string
560
-     */
561
-    public static function toSingular($str) {
562
-        // Workaround for autoload files not loaded by Mouf
563
-        require_once __DIR__.'/../../../../../../../icanboogie/inflector/lib/helpers.php';
564
-        return \ICanBoogie\singularize($str, "en");
565
-    }
554
+	/**
555
+	 * Tries to put string to the singular form (if it is plural).
556
+	 * We assume the table names are in english.
557
+	 *
558
+	 * @param $str string
559
+	 * @return string
560
+	 */
561
+	public static function toSingular($str) {
562
+		// Workaround for autoload files not loaded by Mouf
563
+		require_once __DIR__.'/../../../../../../../icanboogie/inflector/lib/helpers.php';
564
+		return \ICanBoogie\singularize($str, "en");
565
+	}
566 566
     
567
-    /**
568
-     * Put the first letter of the string in lower case.
569
-     * Very useful to transform a class name into a variable name.
570
-     * 
571
-     * @param $str string
572
-     * @return string
573
-     */
574
-    public static function toVariableName($str) {
575
-        return strtolower(substr($str, 0, 1)).substr($str, 1);
576
-    }
577
-
578
-    /**
579
-     * Ensures the file passed in parameter can be written in its directory.
580
-     * @param string $fileName
581
-     */
582
-    private function ensureDirectoryExist($fileName) {
583
-        $dirName = dirname($fileName);
584
-        if (!file_exists($dirName)) {
585
-            $old = umask(0);
586
-            $result = mkdir($dirName, 0775, true);
587
-            umask($old);
588
-            if ($result == false) {
589
-                echo "Unable to create directory: ".$dirName.".";
590
-                exit;
591
-            }
592
-        }
593
-    }
594
-
595
-    /**
596
-     * @param string $rootPath
597
-     */
598
-    public function setRootPath($rootPath)
599
-    {
600
-        $this->rootPath = $rootPath;
601
-    }
602
-
603
-    /**
604
-     * Transforms a DBAL type into a PHP type (for PHPDoc purpose)
605
-     *
606
-     * @param Type $type The DBAL type
607
-     * @return string The PHP type
608
-     */
609
-    public static function dbalTypeToPhpType(Type $type) {
610
-        $map = [
611
-            Type::TARRAY => 'array',
612
-            Type::SIMPLE_ARRAY => 'array',
613
-            Type::JSON_ARRAY => 'array',
614
-            Type::BIGINT => 'string',
615
-            Type::BOOLEAN => 'bool',
616
-            Type::DATETIME => '\DateTimeInterface',
617
-            Type::DATETIMETZ => '\DateTimeInterface',
618
-            Type::DATE => '\DateTimeInterface',
619
-            Type::TIME => '\DateTimeInterface',
620
-            Type::DECIMAL => 'float',
621
-            Type::INTEGER => 'int',
622
-            Type::OBJECT => 'string',
623
-            Type::SMALLINT => 'int',
624
-            Type::STRING => 'string',
625
-            Type::TEXT => 'string',
626
-            Type::BINARY => 'string',
627
-            Type::BLOB => 'string',
628
-            Type::FLOAT => 'float',
629
-            Type::GUID => 'string'
630
-        ];
631
-
632
-        return isset($map[$type->getName()])?$map[$type->getName()]:$type->getName();
633
-    }
634
-
635
-    /**
636
-     *
637
-     * @param string $beanNamespace
638
-     * @return \string[] Returns a map mapping table name to beans name
639
-     */
640
-    public function buildTableToBeanMap($beanNamespace) {
641
-        $tableToBeanMap = [];
642
-
643
-        $tables = $this->schema->getTables();
644
-
645
-        foreach ($tables as $table) {
646
-            $tableName = $table->getName();
647
-            $tableToBeanMap[$tableName] = $beanNamespace . "\\" . self::getBeanNameFromTableName($tableName);
648
-        }
649
-        return $tableToBeanMap;
650
-    }
567
+	/**
568
+	 * Put the first letter of the string in lower case.
569
+	 * Very useful to transform a class name into a variable name.
570
+	 * 
571
+	 * @param $str string
572
+	 * @return string
573
+	 */
574
+	public static function toVariableName($str) {
575
+		return strtolower(substr($str, 0, 1)).substr($str, 1);
576
+	}
577
+
578
+	/**
579
+	 * Ensures the file passed in parameter can be written in its directory.
580
+	 * @param string $fileName
581
+	 */
582
+	private function ensureDirectoryExist($fileName) {
583
+		$dirName = dirname($fileName);
584
+		if (!file_exists($dirName)) {
585
+			$old = umask(0);
586
+			$result = mkdir($dirName, 0775, true);
587
+			umask($old);
588
+			if ($result == false) {
589
+				echo "Unable to create directory: ".$dirName.".";
590
+				exit;
591
+			}
592
+		}
593
+	}
594
+
595
+	/**
596
+	 * @param string $rootPath
597
+	 */
598
+	public function setRootPath($rootPath)
599
+	{
600
+		$this->rootPath = $rootPath;
601
+	}
602
+
603
+	/**
604
+	 * Transforms a DBAL type into a PHP type (for PHPDoc purpose)
605
+	 *
606
+	 * @param Type $type The DBAL type
607
+	 * @return string The PHP type
608
+	 */
609
+	public static function dbalTypeToPhpType(Type $type) {
610
+		$map = [
611
+			Type::TARRAY => 'array',
612
+			Type::SIMPLE_ARRAY => 'array',
613
+			Type::JSON_ARRAY => 'array',
614
+			Type::BIGINT => 'string',
615
+			Type::BOOLEAN => 'bool',
616
+			Type::DATETIME => '\DateTimeInterface',
617
+			Type::DATETIMETZ => '\DateTimeInterface',
618
+			Type::DATE => '\DateTimeInterface',
619
+			Type::TIME => '\DateTimeInterface',
620
+			Type::DECIMAL => 'float',
621
+			Type::INTEGER => 'int',
622
+			Type::OBJECT => 'string',
623
+			Type::SMALLINT => 'int',
624
+			Type::STRING => 'string',
625
+			Type::TEXT => 'string',
626
+			Type::BINARY => 'string',
627
+			Type::BLOB => 'string',
628
+			Type::FLOAT => 'float',
629
+			Type::GUID => 'string'
630
+		];
631
+
632
+		return isset($map[$type->getName()])?$map[$type->getName()]:$type->getName();
633
+	}
634
+
635
+	/**
636
+	 *
637
+	 * @param string $beanNamespace
638
+	 * @return \string[] Returns a map mapping table name to beans name
639
+	 */
640
+	public function buildTableToBeanMap($beanNamespace) {
641
+		$tableToBeanMap = [];
642
+
643
+		$tables = $this->schema->getTables();
644
+
645
+		foreach ($tables as $table) {
646
+			$tableName = $table->getName();
647
+			$tableToBeanMap[$tableName] = $beanNamespace . "\\" . self::getBeanNameFromTableName($tableName);
648
+		}
649
+		return $tableToBeanMap;
650
+	}
651 651
 }
Please login to merge, or discard this patch.
src/Mouf/Database/TDBM/Filters/FilterUtils.php 1 patch
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -9,14 +9,14 @@
 block discarded – undo
9 9
  */
10 10
 class FilterUtils
11 11
 {
12
-    /**
13
-     * @param string|null|DateTimeInterface $value
14
-     */
15
-    public static function valueToSql($value, Connection $dbConnection) {
16
-        if ($value instanceof DateTimeInterface) {
17
-            return "'".$value->format('Y-m-d H:i:s')."'";
18
-        } else {
19
-            return $dbConnection->quote($value);
20
-        }
21
-    }
12
+	/**
13
+	 * @param string|null|DateTimeInterface $value
14
+	 */
15
+	public static function valueToSql($value, Connection $dbConnection) {
16
+		if ($value instanceof DateTimeInterface) {
17
+			return "'".$value->format('Y-m-d H:i:s')."'";
18
+		} else {
19
+			return $dbConnection->quote($value);
20
+		}
21
+	}
22 22
 }
Please login to merge, or discard this patch.
src/Mouf/Database/TDBM/Filters/BetweenFilter.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -98,8 +98,8 @@  discard block
 block discarded – undo
98 98
 	 * 
99 99
 	 * @param string $tableName
100 100
 	 * @param string $columnName
101
-     * @param string $value1
102
-     * @param string $value2
101
+	 * @param string $value1
102
+	 * @param string $value2
103 103
 	 */
104 104
 	public function __construct($tableName=null, $columnName=null, $value1=null, $value2=null) {
105 105
 		$this->tableName = $tableName;
@@ -113,9 +113,9 @@  discard block
 block discarded – undo
113 113
 	 *
114 114
 	 * @param Connection $dbConnection
115 115
 	 * @return string
116
-     * @throws \Mouf\Database\TDBM\TDBMException
116
+	 * @throws \Mouf\Database\TDBM\TDBMException
117 117
 	 */
118
-    public function toSql(Connection $dbConnection) {
118
+	public function toSql(Connection $dbConnection) {
119 119
 		if ($this->enableCondition != null && !$this->enableCondition->isOk()) {
120 120
 			return "";
121 121
 		}
Please login to merge, or discard this patch.
src/Mouf/Database/TDBM/Filters/OrFilter.php 1 patch
Indentation   +20 added lines, -20 removed lines patch added patch discarded remove patch
@@ -68,9 +68,9 @@  discard block
 block discarded – undo
68 68
 	 *
69 69
 	 * @param Connection $dbConnection
70 70
 	 * @return string
71
-     * @throws TDBMException
71
+	 * @throws TDBMException
72 72
 	 */
73
-    public function toSql(Connection $dbConnection) {
73
+	public function toSql(Connection $dbConnection) {
74 74
 		if ($this->enableCondition != null && !$this->enableCondition->isOk()) {
75 75
 			return "";
76 76
 		}
@@ -102,22 +102,22 @@  discard block
 block discarded – undo
102 102
 	 *
103 103
 	 * @return array<string>
104 104
 	 */
105
-    public function getUsedTables() {
106
-        if ($this->enableCondition != null && !$this->enableCondition->isOk()) {
107
-            return array();
108
-        }
109
-
110
-        $tables = array();
111
-        foreach ($this->filters as $filter) {
112
-
113
-            if (!$filter instanceof FilterInterface) {
114
-                throw new TDBMException("Error in OrFilter: One of the parameters is not a filter.");
115
-            }
116
-
117
-            $tables = array_merge($tables,$filter->getUsedTables());
118
-        }
119
-        // Remove tables in double.
120
-        $tables = array_flip(array_flip($tables));
121
-        return $tables;
122
-    }
105
+	public function getUsedTables() {
106
+		if ($this->enableCondition != null && !$this->enableCondition->isOk()) {
107
+			return array();
108
+		}
109
+
110
+		$tables = array();
111
+		foreach ($this->filters as $filter) {
112
+
113
+			if (!$filter instanceof FilterInterface) {
114
+				throw new TDBMException("Error in OrFilter: One of the parameters is not a filter.");
115
+			}
116
+
117
+			$tables = array_merge($tables,$filter->getUsedTables());
118
+		}
119
+		// Remove tables in double.
120
+		$tables = array_flip(array_flip($tables));
121
+		return $tables;
122
+	}
123 123
 }
Please login to merge, or discard this patch.
src/Mouf/Database/TDBM/AbstractTDBMObject.php 1 patch
Indentation   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -547,23 +547,23 @@
 block discarded – undo
547 547
 		return $sql_where;
548 548
 	}
549 549
 
550
-    /**
551
-     * Override the native php clone function for TDBMObjects
552
-     */
553
-    public function __clone(){
554
-        $this->_dbLoadIfNotLoaded();
555
-        //First lets set the status to new (to enter the save function)
556
-        $this->status = TDBMObjectStateEnum::STATE_NEW;
557
-
558
-        // Add the current TDBMObject to the save object list
559
-        $this->tdbmService->_addToToSaveObjectList($this);
560
-
561
-        //Now unset the PK from the row
562
-        $pk_array = $this->tdbmService->getPrimaryKeyColumns($this->dbTableName);
563
-        foreach ($pk_array as $pk) {
564
-            $this->dbRow[$pk] = null;
565
-        }
566
-    }
550
+	/**
551
+	 * Override the native php clone function for TDBMObjects
552
+	 */
553
+	public function __clone(){
554
+		$this->_dbLoadIfNotLoaded();
555
+		//First lets set the status to new (to enter the save function)
556
+		$this->status = TDBMObjectStateEnum::STATE_NEW;
557
+
558
+		// Add the current TDBMObject to the save object list
559
+		$this->tdbmService->_addToToSaveObjectList($this);
560
+
561
+		//Now unset the PK from the row
562
+		$pk_array = $this->tdbmService->getPrimaryKeyColumns($this->dbTableName);
563
+		foreach ($pk_array as $pk) {
564
+			$this->dbRow[$pk] = null;
565
+		}
566
+	}
567 567
 
568 568
 	/**
569 569
 	 * Returns raw database rows.
Please login to merge, or discard this patch.