@@ -305,7 +305,7 @@ discard block |
||
305 | 305 | * |
306 | 306 | * @param string $msg |
307 | 307 | * @param int $priority One of the Propel::LOG_* logging levels |
308 | - * @return boolean |
|
308 | + * @return boolean|null |
|
309 | 309 | */ |
310 | 310 | protected function log($msg, $priority = Propel::LOG_INFO) |
311 | 311 | { |
@@ -1028,7 +1028,7 @@ discard block |
||
1028 | 1028 | * TableMap::TYPE_COLNAME, TableMap::TYPE_FIELDNAME, TableMap::TYPE_NUM. |
1029 | 1029 | * The default key type is the column's TableMap::TYPE_PHPNAME. |
1030 | 1030 | * |
1031 | - * @param mixed $parser A AbstractParser instance, |
|
1031 | + * @param string $parser A AbstractParser instance, |
|
1032 | 1032 | * or a format name ('XML', 'YAML', 'JSON', 'CSV') |
1033 | 1033 | * @param string $data The source data to import from |
1034 | 1034 | * @param string $keyType The type of keys the array uses. |
@@ -138,7 +138,7 @@ |
||
138 | 138 | * $obj = $c->findPk(12, $con); |
139 | 139 | * </code> |
140 | 140 | * |
141 | - * @param mixed $key Primary key to use for the query |
|
141 | + * @param integer $key Primary key to use for the query |
|
142 | 142 | * @param ConnectionInterface $con an optional connection object |
143 | 143 | * |
144 | 144 | * @return ChildUser|array|mixed the result, formatted by the current formatter |
@@ -305,7 +305,7 @@ discard block |
||
305 | 305 | * |
306 | 306 | * @param string $msg |
307 | 307 | * @param int $priority One of the Propel::LOG_* logging levels |
308 | - * @return boolean |
|
308 | + * @return boolean|null |
|
309 | 309 | */ |
310 | 310 | protected function log($msg, $priority = Propel::LOG_INFO) |
311 | 311 | { |
@@ -1028,7 +1028,7 @@ discard block |
||
1028 | 1028 | * TableMap::TYPE_COLNAME, TableMap::TYPE_FIELDNAME, TableMap::TYPE_NUM. |
1029 | 1029 | * The default key type is the column's TableMap::TYPE_PHPNAME. |
1030 | 1030 | * |
1031 | - * @param mixed $parser A AbstractParser instance, |
|
1031 | + * @param string $parser A AbstractParser instance, |
|
1032 | 1032 | * or a format name ('XML', 'YAML', 'JSON', 'CSV') |
1033 | 1033 | * @param string $data The source data to import from |
1034 | 1034 | * @param string $keyType The type of keys the array uses. |
@@ -425,7 +425,7 @@ discard block |
||
425 | 425 | * $query->filterByStarted(array('max' => 'yesterday')); // WHERE started > '2011-03-13' |
426 | 426 | * </code> |
427 | 427 | * |
428 | - * @param mixed $started The value to use as filter. |
|
428 | + * @param integer $started The value to use as filter. |
|
429 | 429 | * Values can be integers (unix timestamps), DateTime objects, or strings. |
430 | 430 | * Empty strings are treated as NULL. |
431 | 431 | * Use scalar values for equality. |
@@ -490,7 +490,7 @@ discard block |
||
490 | 490 | /** |
491 | 491 | * Filter the query by a related \Jalle19\StatusManager\Database\Instance object |
492 | 492 | * |
493 | - * @param \Jalle19\StatusManager\Database\Instance|ObjectCollection $instance The related object(s) to use as filter |
|
493 | + * @param Instance $instance The related object(s) to use as filter |
|
494 | 494 | * @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL |
495 | 495 | * |
496 | 496 | * @throws \Propel\Runtime\Exception\PropelException |
@@ -567,7 +567,7 @@ discard block |
||
567 | 567 | /** |
568 | 568 | * Filter the query by a related \Jalle19\StatusManager\Database\User object |
569 | 569 | * |
570 | - * @param \Jalle19\StatusManager\Database\User|ObjectCollection $user The related object(s) to use as filter |
|
570 | + * @param User $user The related object(s) to use as filter |
|
571 | 571 | * @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL |
572 | 572 | * |
573 | 573 | * @throws \Propel\Runtime\Exception\PropelException |
@@ -314,7 +314,7 @@ discard block |
||
314 | 314 | * |
315 | 315 | * @param string $msg |
316 | 316 | * @param int $priority One of the Propel::LOG_* logging levels |
317 | - * @return boolean |
|
317 | + * @return boolean|null |
|
318 | 318 | */ |
319 | 319 | protected function log($msg, $priority = Propel::LOG_INFO) |
320 | 320 | { |
@@ -758,7 +758,7 @@ discard block |
||
758 | 758 | * one of the class type constants TableMap::TYPE_PHPNAME, TableMap::TYPE_CAMELNAME |
759 | 759 | * TableMap::TYPE_COLNAME, TableMap::TYPE_FIELDNAME, TableMap::TYPE_NUM. |
760 | 760 | * Defaults to TableMap::TYPE_PHPNAME. |
761 | - * @return mixed Value of field. |
|
761 | + * @return string|null Value of field. |
|
762 | 762 | */ |
763 | 763 | public function getByName($name, $type = TableMap::TYPE_PHPNAME) |
764 | 764 | { |
@@ -773,7 +773,7 @@ discard block |
||
773 | 773 | * Zero-based. |
774 | 774 | * |
775 | 775 | * @param int $pos position in xml schema |
776 | - * @return mixed Value of field at $pos |
|
776 | + * @return string|null Value of field at $pos |
|
777 | 777 | */ |
778 | 778 | public function getByPosition($pos) |
779 | 779 | { |
@@ -959,7 +959,7 @@ discard block |
||
959 | 959 | * TableMap::TYPE_COLNAME, TableMap::TYPE_FIELDNAME, TableMap::TYPE_NUM. |
960 | 960 | * The default key type is the column's TableMap::TYPE_PHPNAME. |
961 | 961 | * |
962 | - * @param mixed $parser A AbstractParser instance, |
|
962 | + * @param string $parser A AbstractParser instance, |
|
963 | 963 | * or a format name ('XML', 'YAML', 'JSON', 'CSV') |
964 | 964 | * @param string $data The source data to import from |
965 | 965 | * @param string $keyType The type of keys the array uses. |
@@ -138,7 +138,7 @@ |
||
138 | 138 | * $obj = $c->findPk(12, $con); |
139 | 139 | * </code> |
140 | 140 | * |
141 | - * @param mixed $key Primary key to use for the query |
|
141 | + * @param string $key Primary key to use for the query |
|
142 | 142 | * @param ConnectionInterface $con an optional connection object |
143 | 143 | * |
144 | 144 | * @return ChildInstance|array|mixed the result, formatted by the current formatter |
@@ -305,7 +305,7 @@ discard block |
||
305 | 305 | * |
306 | 306 | * @param string $msg |
307 | 307 | * @param int $priority One of the Propel::LOG_* logging levels |
308 | - * @return boolean |
|
308 | + * @return boolean|null |
|
309 | 309 | */ |
310 | 310 | protected function log($msg, $priority = Propel::LOG_INFO) |
311 | 311 | { |
@@ -1028,7 +1028,7 @@ discard block |
||
1028 | 1028 | * TableMap::TYPE_COLNAME, TableMap::TYPE_FIELDNAME, TableMap::TYPE_NUM. |
1029 | 1029 | * The default key type is the column's TableMap::TYPE_PHPNAME. |
1030 | 1030 | * |
1031 | - * @param mixed $parser A AbstractParser instance, |
|
1031 | + * @param string $parser A AbstractParser instance, |
|
1032 | 1032 | * or a format name ('XML', 'YAML', 'JSON', 'CSV') |
1033 | 1033 | * @param string $data The source data to import from |
1034 | 1034 | * @param string $keyType The type of keys the array uses. |
@@ -464,7 +464,7 @@ discard block |
||
464 | 464 | * $query->filterBySubscriptionId(array('min' => 12)); // WHERE subscription_id > 12 |
465 | 465 | * </code> |
466 | 466 | * |
467 | - * @param mixed $subscriptionId The value to use as filter. |
|
467 | + * @param integer $subscriptionId The value to use as filter. |
|
468 | 468 | * Use scalar values for equality. |
469 | 469 | * Use array values for in_array() equivalent. |
470 | 470 | * Use associative array('min' => $minValue, 'max' => $maxValue) for intervals. |
@@ -505,7 +505,7 @@ discard block |
||
505 | 505 | * $query->filterByStarted(array('max' => 'yesterday')); // WHERE started > '2011-03-13' |
506 | 506 | * </code> |
507 | 507 | * |
508 | - * @param mixed $started The value to use as filter. |
|
508 | + * @param integer $started The value to use as filter. |
|
509 | 509 | * Values can be integers (unix timestamps), DateTime objects, or strings. |
510 | 510 | * Empty strings are treated as NULL. |
511 | 511 | * Use scalar values for equality. |
@@ -642,7 +642,7 @@ discard block |
||
642 | 642 | /** |
643 | 643 | * Filter the query by a related \Jalle19\StatusManager\Database\Instance object |
644 | 644 | * |
645 | - * @param \Jalle19\StatusManager\Database\Instance|ObjectCollection $instance The related object(s) to use as filter |
|
645 | + * @param Instance $instance The related object(s) to use as filter |
|
646 | 646 | * @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL |
647 | 647 | * |
648 | 648 | * @throws \Propel\Runtime\Exception\PropelException |
@@ -719,7 +719,7 @@ discard block |
||
719 | 719 | /** |
720 | 720 | * Filter the query by a related \Jalle19\StatusManager\Database\User object |
721 | 721 | * |
722 | - * @param \Jalle19\StatusManager\Database\User|ObjectCollection $user The related object(s) to use as filter |
|
722 | + * @param User $user The related object(s) to use as filter |
|
723 | 723 | * @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL |
724 | 724 | * |
725 | 725 | * @throws \Propel\Runtime\Exception\PropelException |
@@ -796,7 +796,7 @@ discard block |
||
796 | 796 | /** |
797 | 797 | * Filter the query by a related \Jalle19\StatusManager\Database\Channel object |
798 | 798 | * |
799 | - * @param \Jalle19\StatusManager\Database\Channel|ObjectCollection $channel The related object(s) to use as filter |
|
799 | + * @param Channel $channel The related object(s) to use as filter |
|
800 | 800 | * @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL |
801 | 801 | * |
802 | 802 | * @throws \Propel\Runtime\Exception\PropelException |
@@ -305,7 +305,7 @@ discard block |
||
305 | 305 | * |
306 | 306 | * @param string $msg |
307 | 307 | * @param int $priority One of the Propel::LOG_* logging levels |
308 | - * @return boolean |
|
308 | + * @return boolean|null |
|
309 | 309 | */ |
310 | 310 | protected function log($msg, $priority = Propel::LOG_INFO) |
311 | 311 | { |
@@ -1028,7 +1028,7 @@ discard block |
||
1028 | 1028 | * TableMap::TYPE_COLNAME, TableMap::TYPE_FIELDNAME, TableMap::TYPE_NUM. |
1029 | 1029 | * The default key type is the column's TableMap::TYPE_PHPNAME. |
1030 | 1030 | * |
1031 | - * @param mixed $parser A AbstractParser instance, |
|
1031 | + * @param string $parser A AbstractParser instance, |
|
1032 | 1032 | * or a format name ('XML', 'YAML', 'JSON', 'CSV') |
1033 | 1033 | * @param string $data The source data to import from |
1034 | 1034 | * @param string $keyType The type of keys the array uses. |