@@ -515,7 +515,7 @@ |
||
515 | 515 | /** |
516 | 516 | * Returns the tables used in the filter in an array. |
517 | 517 | * |
518 | - * @return array<string> |
|
518 | + * @return integer[] |
|
519 | 519 | */ |
520 | 520 | public function getUsedTables() { |
521 | 521 | return array_keys($this->dbRows); |
@@ -95,7 +95,7 @@ discard block |
||
95 | 95 | * @throws TDBMException |
96 | 96 | * @throws TDBMInvalidOperationException |
97 | 97 | */ |
98 | - public function __construct($tableName=null, array $primaryKeys=array(), TDBMService $tdbmService=null) { |
|
98 | + public function __construct($tableName = null, array $primaryKeys = array(), TDBMService $tdbmService = null) { |
|
99 | 99 | // FIXME: lazy loading should be forbidden on tables with inheritance and dynamic type assignation... |
100 | 100 | if (!empty($tableName)) { |
101 | 101 | $this->dbRows[$tableName] = new DbRow($this, $tableName, $primaryKeys, $tdbmService); |
@@ -199,7 +199,7 @@ discard block |
||
199 | 199 | * $status = TDBMObjectStateEnum::STATE_LOADED when the object is cached in memory. |
200 | 200 | * @param string $state |
201 | 201 | */ |
202 | - public function _setStatus($state){ |
|
202 | + public function _setStatus($state) { |
|
203 | 203 | $this->status = $state; |
204 | 204 | |
205 | 205 | // TODO: we might ignore the loaded => dirty state here! dirty status comes from the db_row itself. |
@@ -210,7 +210,7 @@ discard block |
||
210 | 210 | |
211 | 211 | public function get($var, $tableName = null) { |
212 | 212 | if ($tableName === null) { |
213 | - if (count($this->dbRows) > 1) { |
|
213 | + if (count($this->dbRows)>1) { |
|
214 | 214 | throw new TDBMException('This object is based on several tables. You must specify which table you are retrieving data from.'); |
215 | 215 | } elseif (count($this->dbRows) === 1) { |
216 | 216 | $tableName = array_keys($this->dbRows)[0]; |
@@ -236,7 +236,7 @@ discard block |
||
236 | 236 | */ |
237 | 237 | public function has($var, $tableName = null) { |
238 | 238 | if ($tableName === null) { |
239 | - if (count($this->dbRows) > 1) { |
|
239 | + if (count($this->dbRows)>1) { |
|
240 | 240 | throw new TDBMException('This object is based on several tables. You must specify which table you are retrieving data from.'); |
241 | 241 | } elseif (count($this->dbRows) === 1) { |
242 | 242 | $tableName = array_keys($this->dbRows)[0]; |
@@ -256,7 +256,7 @@ discard block |
||
256 | 256 | |
257 | 257 | public function set($var, $value, $tableName = null) { |
258 | 258 | if ($tableName === null) { |
259 | - if (count($this->dbRows) > 1) { |
|
259 | + if (count($this->dbRows)>1) { |
|
260 | 260 | throw new TDBMException('This object is based on several tables. You must specify which table you are retrieving data from.'); |
261 | 261 | } elseif (count($this->dbRows) === 1) { |
262 | 262 | $tableName = array_keys($this->dbRows)[0]; |
@@ -281,7 +281,7 @@ discard block |
||
281 | 281 | */ |
282 | 282 | public function setRef($foreignKeyName, AbstractTDBMObject $bean, $tableName = null) { |
283 | 283 | if ($tableName === null) { |
284 | - if (count($this->dbRows) > 1) { |
|
284 | + if (count($this->dbRows)>1) { |
|
285 | 285 | throw new TDBMException('This object is based on several tables. You must specify which table you are retrieving data from.'); |
286 | 286 | } elseif (count($this->dbRows) === 1) { |
287 | 287 | $tableName = array_keys($this->dbRows)[0]; |
@@ -306,7 +306,7 @@ discard block |
||
306 | 306 | */ |
307 | 307 | public function getRef($foreignKeyName, $tableName = null) { |
308 | 308 | if ($tableName === null) { |
309 | - if (count($this->dbRows) > 1) { |
|
309 | + if (count($this->dbRows)>1) { |
|
310 | 310 | throw new TDBMException('This object is based on several tables. You must specify which table you are retrieving data from.'); |
311 | 311 | } elseif (count($this->dbRows) === 1) { |
312 | 312 | $tableName = array_keys($this->dbRows)[0]; |
@@ -422,13 +422,13 @@ discard block |
||
422 | 422 | */ |
423 | 423 | private function setRelationship($pivotTableName, AbstractTDBMObject $remoteBean, $status) { |
424 | 424 | $storage = $this->getRelationshipStorage($pivotTableName); |
425 | - $storage->attach($remoteBean, [ 'status' => $status, 'reverse' => false ]); |
|
425 | + $storage->attach($remoteBean, ['status' => $status, 'reverse' => false]); |
|
426 | 426 | if ($this->status === TDBMObjectStateEnum::STATE_LOADED) { |
427 | 427 | $this->_setStatus(TDBMObjectStateEnum::STATE_DIRTY); |
428 | 428 | } |
429 | 429 | |
430 | 430 | $remoteStorage = $remoteBean->getRelationshipStorage($pivotTableName); |
431 | - $remoteStorage->attach($this, [ 'status' => $status, 'reverse' => true ]); |
|
431 | + $remoteStorage->attach($this, ['status' => $status, 'reverse' => true]); |
|
432 | 432 | } |
433 | 433 | |
434 | 434 | /** |
@@ -516,23 +516,23 @@ discard block |
||
516 | 516 | * |
517 | 517 | * @return string |
518 | 518 | */ |
519 | - private function getPrimaryKeyWhereStatement () { |
|
519 | + private function getPrimaryKeyWhereStatement() { |
|
520 | 520 | // Let's first get the primary keys |
521 | 521 | $pk_table = $this->tdbmService->getPrimaryKeyColumns($this->dbTableName); |
522 | 522 | // Now for the object_id |
523 | 523 | $object_id = $this->TDBMObject_id; |
524 | 524 | // If there is only one primary key: |
525 | - if (count($pk_table)==1) { |
|
525 | + if (count($pk_table) == 1) { |
|
526 | 526 | $sql_where = $this->db_connection->escapeDBItem($this->dbTableName).'.'.$this->db_connection->escapeDBItem($pk_table[0])."=".$this->db_connection->quoteSmart($this->TDBMObject_id); |
527 | 527 | } else { |
528 | 528 | $ids = unserialize($object_id); |
529 | - $i=0; |
|
529 | + $i = 0; |
|
530 | 530 | $sql_where_array = array(); |
531 | 531 | foreach ($pk_table as $pk) { |
532 | 532 | $sql_where_array[] = $this->db_connection->escapeDBItem($this->dbTableName).'.'.$this->db_connection->escapeDBItem($pk)."=".$this->db_connection->quoteSmart($ids[$i]); |
533 | 533 | $i++; |
534 | 534 | } |
535 | - $sql_where = implode(" AND ",$sql_where_array); |
|
535 | + $sql_where = implode(" AND ", $sql_where_array); |
|
536 | 536 | } |
537 | 537 | return $sql_where; |
538 | 538 | } |
@@ -540,7 +540,7 @@ discard block |
||
540 | 540 | /** |
541 | 541 | * Override the native php clone function for TDBMObjects |
542 | 542 | */ |
543 | - public function __clone(){ |
|
543 | + public function __clone() { |
|
544 | 544 | $this->_dbLoadIfNotLoaded(); |
545 | 545 | //First lets set the status to new (to enter the save function) |
546 | 546 | $this->status = TDBMObjectStateEnum::STATE_NEW; |
@@ -567,7 +567,7 @@ discard block |
||
567 | 567 | private function registerTable($tableName) { |
568 | 568 | $dbRow = new DbRow($this, $tableName); |
569 | 569 | |
570 | - if (in_array($this->status, [ TDBMObjectStateEnum::STATE_NOT_LOADED, TDBMObjectStateEnum::STATE_LOADED, TDBMObjectStateEnum::STATE_DIRTY ])) { |
|
570 | + if (in_array($this->status, [TDBMObjectStateEnum::STATE_NOT_LOADED, TDBMObjectStateEnum::STATE_LOADED, TDBMObjectStateEnum::STATE_DIRTY])) { |
|
571 | 571 | // Let's get the primary key for the new table |
572 | 572 | $anotherDbRow = array_values($this->dbRows)[0]; |
573 | 573 | /* @var $anotherDbRow DbRow */ |
@@ -138,9 +138,7 @@ discard block |
||
138 | 138 | * @Action |
139 | 139 | * @param string $daonamespace |
140 | 140 | * @param string $beannamespace |
141 | - * @param int $keepSupport |
|
142 | 141 | * @param int $storeInUtc |
143 | - * @param int $castDatesToDateTime |
|
144 | 142 | * @param string $selfedit |
145 | 143 | * @throws \Mouf\MoufException |
146 | 144 | */ |
@@ -168,6 +166,9 @@ discard block |
||
168 | 166 | |
169 | 167 | protected $errorMsg; |
170 | 168 | |
169 | + /** |
|
170 | + * @param string $msg |
|
171 | + */ |
|
171 | 172 | private function displayErrorMsg($msg) { |
172 | 173 | $this->errorMsg = $msg; |
173 | 174 | $this->content->addFile(dirname(__FILE__)."/../../../../views/installError.php", $this); |
@@ -144,7 +144,7 @@ |
||
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") { |
@@ -328,7 +328,7 @@ |
||
328 | 328 | /** |
329 | 329 | * Returns the tables used in the filter in an array. |
330 | 330 | * |
331 | - * @return array<string> |
|
331 | + * @return string[] |
|
332 | 332 | */ |
333 | 333 | public function getUsedTables() { |
334 | 334 | return array($this->dbTableName); |
@@ -94,7 +94,7 @@ discard block |
||
94 | 94 | * @throws TDBMException |
95 | 95 | * @throws TDBMInvalidOperationException |
96 | 96 | */ |
97 | - public function __construct(AbstractTDBMObject $object, $table_name, array $primaryKeys=array(), TDBMService $tdbmService=null, array $dbRow = array()) { |
|
97 | + public function __construct(AbstractTDBMObject $object, $table_name, array $primaryKeys = array(), TDBMService $tdbmService = null, array $dbRow = array()) { |
|
98 | 98 | $this->object = $object; |
99 | 99 | $this->dbTableName = $table_name; |
100 | 100 | |
@@ -141,7 +141,7 @@ discard block |
||
141 | 141 | * $status = TDBMObjectStateEnum::STATE_LOADED when the object is cached in memory. |
142 | 142 | * @param string $state |
143 | 143 | */ |
144 | - public function _setStatus($state){ |
|
144 | + public function _setStatus($state) { |
|
145 | 145 | $this->status = $state; |
146 | 146 | } |
147 | 147 | |
@@ -163,7 +163,7 @@ discard block |
||
163 | 163 | $sql = "SELECT * FROM ".$connection->quoteIdentifier($this->dbTableName)." WHERE ".$sql_where; |
164 | 164 | $result = $connection->executeQuery($sql, $parameters); |
165 | 165 | |
166 | - if ($result->rowCount()==0) |
|
166 | + if ($result->rowCount() == 0) |
|
167 | 167 | { |
168 | 168 | throw new TDBMException("Could not retrieve object from table \"$this->dbTableName\" with ID \"".$this->TDBMObject_id."\"."); |
169 | 169 | } |
@@ -326,7 +326,7 @@ discard block |
||
326 | 326 | /** |
327 | 327 | * Override the native php clone function for TDBMObjects |
328 | 328 | */ |
329 | - public function __clone(){ |
|
329 | + public function __clone() { |
|
330 | 330 | $this->_dbLoadIfNotLoaded(); |
331 | 331 | //First lets set the status to new (to enter the save function) |
332 | 332 | $this->status = TDBMObjectStateEnum::STATE_NEW; |
@@ -358,7 +358,7 @@ discard block |
||
358 | 358 | $pkValues = array_values($firstRefDbRow->_getPrimaryKeys()); |
359 | 359 | $localColumns = $fk->getLocalColumns(); |
360 | 360 | |
361 | - for ($i=0, $count=count($localColumns); $i<$count; $i++) { |
|
361 | + for ($i = 0, $count = count($localColumns); $i<$count; $i++) { |
|
362 | 362 | $dbRow[$localColumns[$i]] = $pkValues[$i]; |
363 | 363 | } |
364 | 364 | } |
@@ -63,6 +63,9 @@ discard block |
||
63 | 63 | |
64 | 64 | private $innerResultIterator; |
65 | 65 | |
66 | + /** |
|
67 | + * @param integer $offset |
|
68 | + */ |
|
66 | 69 | public function __construct(ResultIterator $parentResult, $magicSql, array $parameters, $limit, $offset, array $columnDescriptors, $objectStorage, $className, TDBMService $tdbmService, MagicQuery $magicQuery, $mode) |
67 | 70 | { |
68 | 71 | $this->parentResult = $parentResult; |
@@ -108,7 +111,7 @@ discard block |
||
108 | 111 | } |
109 | 112 | |
110 | 113 | /** |
111 | - * @return int |
|
114 | + * @return double |
|
112 | 115 | */ |
113 | 116 | public function getCurrentPage() |
114 | 117 | { |
@@ -112,7 +112,7 @@ |
||
112 | 112 | */ |
113 | 113 | public function getCurrentPage() |
114 | 114 | { |
115 | - return floor($this->offset / $this->limit) + 1; |
|
115 | + return floor($this->offset/$this->limit)+1; |
|
116 | 116 | } |
117 | 117 | |
118 | 118 | /** |
@@ -35,6 +35,9 @@ discard block |
||
35 | 35 | class TDBMObject extends AbstractTDBMObject implements \ArrayAccess, \Iterator |
36 | 36 | { |
37 | 37 | |
38 | + /** |
|
39 | + * @param string $var |
|
40 | + */ |
|
38 | 41 | public function __get($var) |
39 | 42 | { |
40 | 43 | return $this->get($var); |
@@ -51,6 +54,10 @@ discard block |
||
51 | 54 | return $this->has($var); |
52 | 55 | } |
53 | 56 | |
57 | + /** |
|
58 | + * @param string $var |
|
59 | + * @param string|null $value |
|
60 | + */ |
|
54 | 61 | public function __set($var, $value) |
55 | 62 | { |
56 | 63 | $this->set($var, $value); |
@@ -108,7 +108,7 @@ |
||
108 | 108 | public function rewind() |
109 | 109 | { |
110 | 110 | $this->_dbLoadIfNotLoaded(); |
111 | - if (count($this->dbRow) > 0) { |
|
111 | + if (count($this->dbRow)>0) { |
|
112 | 112 | $this->_validIterator = true; |
113 | 113 | } else { |
114 | 114 | $this->_validIterator = false; |
@@ -27,8 +27,7 @@ |
||
27 | 27 | /** |
28 | 28 | * Returns the foreignkey the column is part of, if any. null otherwise. |
29 | 29 | * |
30 | - * @param Column $column |
|
31 | - * @return ForeignKeyConstraint|null |
|
30 | + * @return boolean |
|
32 | 31 | */ |
33 | 32 | public function getForeignKey() { |
34 | 33 | return false; |
@@ -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> |
@@ -85,7 +85,7 @@ discard block |
||
85 | 85 | * @param string $columnName |
86 | 86 | * @param array<string> $values |
87 | 87 | */ |
88 | - public function __construct($tableName=null, $columnName=null, $values=array()) { |
|
88 | + public function __construct($tableName = null, $columnName = null, $values = array()) { |
|
89 | 89 | $this->tableName = $tableName; |
90 | 90 | $this->columnName = $columnName; |
91 | 91 | $this->values = $values; |
@@ -117,7 +117,7 @@ discard block |
||
117 | 117 | } |
118 | 118 | } |
119 | 119 | |
120 | - return $this->tableName.'.'.$this->columnName.' IN ('.implode(',',$values_sql).")"; |
|
120 | + return $this->tableName.'.'.$this->columnName.' IN ('.implode(',', $values_sql).")"; |
|
121 | 121 | } |
122 | 122 | |
123 | 123 | /** |
@@ -60,7 +60,7 @@ discard block |
||
60 | 60 | * |
61 | 61 | * @param string $sqlString |
62 | 62 | */ |
63 | - public function __construct($sqlString=null) { |
|
63 | + public function __construct($sqlString = null) { |
|
64 | 64 | $this->sqlString = $sqlString; |
65 | 65 | } |
66 | 66 | |
@@ -86,8 +86,8 @@ discard block |
||
86 | 86 | $result = -1; |
87 | 87 | while (true) { |
88 | 88 | $result = strrpos($phrase, "'", $result+1); |
89 | - if ($result===false) { |
|
90 | - if ($sentence!='') |
|
89 | + if ($result === false) { |
|
90 | + if ($sentence != '') |
|
91 | 91 | $sentence .= ','; |
92 | 92 | $sentence .= $phrase; |
93 | 93 | |
@@ -102,7 +102,7 @@ discard block |
||
102 | 102 | else |
103 | 103 | { |
104 | 104 | $valid_result = true; |
105 | - if ($result>0 && $phrase{$result-1}=='\\') { |
|
105 | + if ($result>0 && $phrase{$result-1} == '\\') { |
|
106 | 106 | $valid_result = false; |
107 | 107 | } |
108 | 108 | if ($valid_result) |
@@ -128,7 +128,7 @@ discard block |
||
128 | 128 | // First, let's remove all the stuff in quotes: |
129 | 129 | |
130 | 130 | // Let's remove all the \' found |
131 | - $work_str = str_replace("\\'",'',$this->sqlString); |
|
131 | + $work_str = str_replace("\\'", '', $this->sqlString); |
|
132 | 132 | // Now, let's split the string using ' |
133 | 133 | $work_table = explode("'", $work_str); |
134 | 134 | |
@@ -136,7 +136,7 @@ discard block |
||
136 | 136 | return ''; |
137 | 137 | |
138 | 138 | // if we start with a ', let's remove the first text |
139 | - if (strstr($work_str,"'") === 0) |
|
139 | + if (strstr($work_str, "'") === 0) |
|
140 | 140 | array_shift($work_table); |
141 | 141 | |
142 | 142 | if (count($work_table) == 0) |
@@ -147,13 +147,13 @@ discard block |
||
147 | 147 | |
148 | 148 | $i = 0; |
149 | 149 | foreach ($work_table as $str_fragment) { |
150 | - if (($i % 2) == 0) |
|
150 | + if (($i%2) == 0) |
|
151 | 151 | $work_str2 .= $str_fragment.' '; |
152 | 152 | $i++; |
153 | 153 | } |
154 | 154 | |
155 | 155 | // Now, let's run a regexp to find all the strings matching the pattern xxx.yyy |
156 | - preg_match_all('/([a-zA-Z_](?:[a-zA-Z0-9_]*))\.(?:[a-zA-Z_](?:[a-zA-Z0-9_]*))/', $work_str2,$capture_result); |
|
156 | + preg_match_all('/([a-zA-Z_](?:[a-zA-Z0-9_]*))\.(?:[a-zA-Z_](?:[a-zA-Z0-9_]*))/', $work_str2, $capture_result); |
|
157 | 157 | |
158 | 158 | $tables_used = $capture_result[1]; |
159 | 159 | // remove doubles: |