@@ -181,6 +181,9 @@ |
||
| 181 | 181 | |
| 182 | 182 | protected $errorMsg; |
| 183 | 183 | |
| 184 | + /** |
|
| 185 | + * @param string $msg |
|
| 186 | + */ |
|
| 184 | 187 | private function displayErrorMsg($msg) |
| 185 | 188 | { |
| 186 | 189 | $this->errorMsg = $msg; |
@@ -147,7 +147,7 @@ discard block |
||
| 147 | 147 | /** |
| 148 | 148 | * Returns the name of the base bean class from the table name. |
| 149 | 149 | * |
| 150 | - * @param $tableName |
|
| 150 | + * @param string $tableName |
|
| 151 | 151 | * |
| 152 | 152 | * @return string |
| 153 | 153 | */ |
@@ -159,7 +159,7 @@ discard block |
||
| 159 | 159 | /** |
| 160 | 160 | * Returns the name of the base DAO class from the table name. |
| 161 | 161 | * |
| 162 | - * @param $tableName |
|
| 162 | + * @param string $tableName |
|
| 163 | 163 | * |
| 164 | 164 | * @return string |
| 165 | 165 | */ |
@@ -176,6 +176,7 @@ discard block |
||
| 176 | 176 | * @param Table $table The table |
| 177 | 177 | * @param string $beannamespace The namespace of the bean |
| 178 | 178 | * @param ClassNameMapper $classNameMapper |
| 179 | + * @param boolean $storeInUtc |
|
| 179 | 180 | * |
| 180 | 181 | * @throws TDBMException |
| 181 | 182 | */ |
@@ -486,6 +487,8 @@ discard block |
||
| 486 | 487 | * Generates the factory bean. |
| 487 | 488 | * |
| 488 | 489 | * @param Table[] $tableList |
| 490 | + * @param string $daoFactoryClassName |
|
| 491 | + * @param string $daoNamespace |
|
| 489 | 492 | */ |
| 490 | 493 | private function generateFactory(array $tableList, $daoFactoryClassName, $daoNamespace, ClassNameMapper $classNameMapper) |
| 491 | 494 | { |
@@ -86,7 +86,7 @@ discard block |
||
| 86 | 86 | * @Action |
| 87 | 87 | * |
| 88 | 88 | * @param string $name |
| 89 | - * @param bool $selfedit |
|
| 89 | + * @param string|boolean $selfedit |
|
| 90 | 90 | */ |
| 91 | 91 | public function generate($name, $daonamespace, $beannamespace, $daofactoryclassname, $daofactoryinstancename, $storeInUtc = 0, $selfedit = 'false', $useCustomComposer = false, $composerFile = '') |
| 92 | 92 | { |
@@ -109,6 +109,8 @@ discard block |
||
| 109 | 109 | * @param string $daofactoryinstancename |
| 110 | 110 | * @param string $selfedit |
| 111 | 111 | * @param bool $storeInUtc |
| 112 | + * @param boolean $useCustomComposer |
|
| 113 | + * @param string $composerFile |
|
| 112 | 114 | * |
| 113 | 115 | * @throws \Mouf\MoufException |
| 114 | 116 | */ |
@@ -68,7 +68,7 @@ discard block |
||
| 68 | 68 | /** |
| 69 | 69 | * Adds an additional object to the result set (if not already available). |
| 70 | 70 | * |
| 71 | - * @param $object |
|
| 71 | + * @param AbstractTDBMObject $object |
|
| 72 | 72 | */ |
| 73 | 73 | public function add($object) |
| 74 | 74 | { |
@@ -85,7 +85,7 @@ discard block |
||
| 85 | 85 | /** |
| 86 | 86 | * Removes an object from the result set. |
| 87 | 87 | * |
| 88 | - * @param $object |
|
| 88 | + * @param AbstractTDBMObject $object |
|
| 89 | 89 | */ |
| 90 | 90 | public function remove($object) |
| 91 | 91 | { |
@@ -205,6 +205,7 @@ discard block |
||
| 205 | 205 | |
| 206 | 206 | /** |
| 207 | 207 | * @param int $offset |
| 208 | + * @param integer $limit |
|
| 208 | 209 | * |
| 209 | 210 | * @return \Porpaginas\Page |
| 210 | 211 | */ |
@@ -227,7 +228,7 @@ discard block |
||
| 227 | 228 | /** |
| 228 | 229 | * Return an iterator over all results of the paginatable. |
| 229 | 230 | * |
| 230 | - * @return Iterator |
|
| 231 | + * @return \Iterator |
|
| 231 | 232 | */ |
| 232 | 233 | public function getIterator() |
| 233 | 234 | { |
@@ -69,6 +69,12 @@ discard block |
||
| 69 | 69 | |
| 70 | 70 | private $logger; |
| 71 | 71 | |
| 72 | + /** |
|
| 73 | + * @param string $magicSql |
|
| 74 | + * @param string $magicSqlCount |
|
| 75 | + * @param null|string $className |
|
| 76 | + * @param integer $mode |
|
| 77 | + */ |
|
| 72 | 78 | public function __construct($magicSql, $magicSqlCount, array $parameters, array $columnDescriptors, $objectStorage, $className, TDBMService $tdbmService, MagicQuery $magicQuery, $mode, LoggerInterface $logger) |
| 73 | 79 | { |
| 74 | 80 | $this->magicSql = $magicSql; |
@@ -152,6 +158,7 @@ discard block |
||
| 152 | 158 | |
| 153 | 159 | /** |
| 154 | 160 | * @param int $offset |
| 161 | + * @param integer $limit |
|
| 155 | 162 | * |
| 156 | 163 | * @return PageIterator |
| 157 | 164 | */ |
@@ -1301,7 +1301,7 @@ discard block |
||
| 1301 | 1301 | * @param string $mainTable The name of the table queried |
| 1302 | 1302 | * @param string|array|null $filter The SQL filters to apply to the query (the WHERE part). Columns from tables different from $mainTable must be prefixed by the table name (in the form: table.column) |
| 1303 | 1303 | * @param array $parameters |
| 1304 | - * @param string|UncheckedOrderBy|null $orderString The ORDER BY part of the query. Columns from tables different from $mainTable must be prefixed by the table name (in the form: table.column) |
|
| 1304 | + * @param string|null $orderString The ORDER BY part of the query. Columns from tables different from $mainTable must be prefixed by the table name (in the form: table.column) |
|
| 1305 | 1305 | * @param array $additionalTablesFetch |
| 1306 | 1306 | * @param int $mode |
| 1307 | 1307 | * @param string $className Optional: The name of the class to instantiate. This class must extend the TDBMObject class. If none is specified, a TDBMObject instance will be returned |
@@ -1769,7 +1769,7 @@ discard block |
||
| 1769 | 1769 | * @param $pivotTableName |
| 1770 | 1770 | * @param AbstractTDBMObject $bean |
| 1771 | 1771 | * |
| 1772 | - * @return AbstractTDBMObject[] |
|
| 1772 | + * @return ResultIterator |
|
| 1773 | 1773 | */ |
| 1774 | 1774 | public function _getRelatedBeans(string $pivotTableName, AbstractTDBMObject $bean) |
| 1775 | 1775 | { |