@@ -165,7 +165,7 @@ discard block |
||
| 165 | 165 | * $obj = $c->findPk(12, $con); |
| 166 | 166 | * </code> |
| 167 | 167 | * |
| 168 | - * @param mixed $key Primary key to use for the query |
|
| 168 | + * @param integer $key Primary key to use for the query |
|
| 169 | 169 | * @param ConnectionInterface $con an optional connection object |
| 170 | 170 | * |
| 171 | 171 | * @return ChildBannerImage|array|mixed the result, formatted by the current formatter |
@@ -354,7 +354,7 @@ discard block |
||
| 354 | 354 | * |
| 355 | 355 | * @see filterByBanners() |
| 356 | 356 | * |
| 357 | - * @param mixed $bannerId The value to use as filter. |
|
| 357 | + * @param integer $bannerId The value to use as filter. |
|
| 358 | 358 | * Use scalar values for equality. |
| 359 | 359 | * Use array values for in_array() equivalent. |
| 360 | 360 | * Use associative array('min' => $minValue, 'max' => $maxValue) for intervals. |
@@ -629,7 +629,7 @@ discard block |
||
| 629 | 629 | * $query->filterByActive(array('min' => 12)); // WHERE active > 12 |
| 630 | 630 | * </code> |
| 631 | 631 | * |
| 632 | - * @param mixed $active The value to use as filter. |
|
| 632 | + * @param integer $active The value to use as filter. |
|
| 633 | 633 | * Use scalar values for equality. |
| 634 | 634 | * Use array values for in_array() equivalent. |
| 635 | 635 | * Use associative array('min' => $minValue, 'max' => $maxValue) for intervals. |
@@ -704,7 +704,7 @@ discard block |
||
| 704 | 704 | /** |
| 705 | 705 | * Filter the query by a related \xbanners\models\Banners object |
| 706 | 706 | * |
| 707 | - * @param \xbanners\models\Banners|ObjectCollection $banners The related object(s) to use as filter |
|
| 707 | + * @param Banners $banners The related object(s) to use as filter |
|
| 708 | 708 | * @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL |
| 709 | 709 | * |
| 710 | 710 | * @throws \Propel\Runtime\Exception\PropelException |
@@ -1166,7 +1166,7 @@ discard block |
||
| 1166 | 1166 | * TableMap::TYPE_COLNAME, TableMap::TYPE_FIELDNAME, TableMap::TYPE_NUM. |
| 1167 | 1167 | * The default key type is the column's TableMap::TYPE_PHPNAME. |
| 1168 | 1168 | * |
| 1169 | - * @param mixed $parser A AbstractParser instance, |
|
| 1169 | + * @param string $parser A AbstractParser instance, |
|
| 1170 | 1170 | * or a format name ('XML', 'YAML', 'JSON', 'CSV') |
| 1171 | 1171 | * @param string $data The source data to import from |
| 1172 | 1172 | * @param string $keyType The type of keys the array uses. |
@@ -1223,7 +1223,7 @@ discard block |
||
| 1223 | 1223 | * |
| 1224 | 1224 | * @throws LogicException if no primary key is defined |
| 1225 | 1225 | * |
| 1226 | - * @return Criteria The Criteria object containing value(s) for primary key(s). |
|
| 1226 | + * @return null|Criteria The Criteria object containing value(s) for primary key(s). |
|
| 1227 | 1227 | */ |
| 1228 | 1228 | public function buildPkeyCriteria() |
| 1229 | 1229 | { |