@@ -289,7 +289,7 @@ discard block |
||
289 | 289 | * |
290 | 290 | * @param string $msg |
291 | 291 | * @param int $priority One of the Propel::LOG_* logging levels |
292 | - * @return boolean |
|
292 | + * @return boolean|null |
|
293 | 293 | */ |
294 | 294 | protected function log($msg, $priority = Propel::LOG_INFO) |
295 | 295 | { |
@@ -1132,7 +1132,7 @@ discard block |
||
1132 | 1132 | * TableMap::TYPE_COLNAME, TableMap::TYPE_FIELDNAME, TableMap::TYPE_NUM. |
1133 | 1133 | * The default key type is the column's TableMap::TYPE_PHPNAME. |
1134 | 1134 | * |
1135 | - * @param mixed $parser A AbstractParser instance, |
|
1135 | + * @param string $parser A AbstractParser instance, |
|
1136 | 1136 | * or a format name ('XML', 'YAML', 'JSON', 'CSV') |
1137 | 1137 | * @param string $data The source data to import from |
1138 | 1138 | * @param string $keyType The type of keys the array uses. |
@@ -316,7 +316,7 @@ discard block |
||
316 | 316 | * |
317 | 317 | * @param string $msg |
318 | 318 | * @param int $priority One of the Propel::LOG_* logging levels |
319 | - * @return boolean |
|
319 | + * @return boolean|null |
|
320 | 320 | */ |
321 | 321 | protected function log($msg, $priority = Propel::LOG_INFO) |
322 | 322 | { |
@@ -1159,7 +1159,7 @@ discard block |
||
1159 | 1159 | * TableMap::TYPE_COLNAME, TableMap::TYPE_FIELDNAME, TableMap::TYPE_NUM. |
1160 | 1160 | * The default key type is the column's TableMap::TYPE_PHPNAME. |
1161 | 1161 | * |
1162 | - * @param mixed $parser A AbstractParser instance, |
|
1162 | + * @param string $parser A AbstractParser instance, |
|
1163 | 1163 | * or a format name ('XML', 'YAML', 'JSON', 'CSV') |
1164 | 1164 | * @param string $data The source data to import from |
1165 | 1165 | * @param string $keyType The type of keys the array uses. |
@@ -1390,7 +1390,7 @@ discard block |
||
1390 | 1390 | * Validates the object and all objects related to this table. |
1391 | 1391 | * |
1392 | 1392 | * @see getValidationFailures() |
1393 | - * @param object $validator A Validator class instance |
|
1393 | + * @param ValidatorInterface $validator A Validator class instance |
|
1394 | 1394 | * @return boolean Whether all objects pass validation. |
1395 | 1395 | */ |
1396 | 1396 | public function validate(ValidatorInterface $validator = null) |
@@ -1437,7 +1437,7 @@ discard block |
||
1437 | 1437 | * Gets any ConstraintViolation objects that resulted from last call to validate(). |
1438 | 1438 | * |
1439 | 1439 | * |
1440 | - * @return object ConstraintViolationList |
|
1440 | + * @return ConstraintViolationList ConstraintViolationList |
|
1441 | 1441 | * @see validate() |
1442 | 1442 | */ |
1443 | 1443 | public function getValidationFailures() |
@@ -289,7 +289,7 @@ discard block |
||
289 | 289 | * |
290 | 290 | * @param string $msg |
291 | 291 | * @param int $priority One of the Propel::LOG_* logging levels |
292 | - * @return boolean |
|
292 | + * @return boolean|null |
|
293 | 293 | */ |
294 | 294 | protected function log($msg, $priority = Propel::LOG_INFO) |
295 | 295 | { |
@@ -1132,7 +1132,7 @@ discard block |
||
1132 | 1132 | * TableMap::TYPE_COLNAME, TableMap::TYPE_FIELDNAME, TableMap::TYPE_NUM. |
1133 | 1133 | * The default key type is the column's TableMap::TYPE_PHPNAME. |
1134 | 1134 | * |
1135 | - * @param mixed $parser A AbstractParser instance, |
|
1135 | + * @param string $parser A AbstractParser instance, |
|
1136 | 1136 | * or a format name ('XML', 'YAML', 'JSON', 'CSV') |
1137 | 1137 | * @param string $data The source data to import from |
1138 | 1138 | * @param string $keyType The type of keys the array uses. |
@@ -9,6 +9,9 @@ |
||
9 | 9 | */ |
10 | 10 | class ModuleController extends BaseController { |
11 | 11 | |
12 | + /** |
|
13 | + * @param string $view |
|
14 | + */ |
|
12 | 15 | protected function render($view, array $data = array()) { |
13 | 16 | |
14 | 17 | $ref = new \ReflectionClass($this); |