@@ -42,7 +42,7 @@ discard block |
||
| 42 | 42 | |
| 43 | 43 | /** |
| 44 | 44 | * add item to wishlist |
| 45 | - * @param $varId |
|
| 45 | + * @param integer $varId |
|
| 46 | 46 | * @param $listId |
| 47 | 47 | * @param $listName |
| 48 | 48 | * @return mixed |
@@ -64,8 +64,8 @@ discard block |
||
| 64 | 64 | |
| 65 | 65 | /** |
| 66 | 66 | * move item |
| 67 | - * @param $varId |
|
| 68 | - * @param $wish_list_id |
|
| 67 | + * @param integer $varId |
|
| 68 | + * @param integer $wish_list_id |
|
| 69 | 69 | * @return mixed |
| 70 | 70 | */ |
| 71 | 71 | public function moveItem($varId, $wish_list_id) { |
@@ -86,7 +86,7 @@ discard block |
||
| 86 | 86 | |
| 87 | 87 | /** |
| 88 | 88 | * show WL by hash |
| 89 | - * @param $hash |
|
| 89 | + * @param string $hash |
|
| 90 | 90 | * @return boolean |
| 91 | 91 | */ |
| 92 | 92 | public function show($hash) { |
@@ -113,7 +113,7 @@ discard block |
||
| 113 | 113 | |
| 114 | 114 | /** |
| 115 | 115 | * get user by id |
| 116 | - * @param $user_id |
|
| 116 | + * @param integer $user_id |
|
| 117 | 117 | * @return boolean |
| 118 | 118 | */ |
| 119 | 119 | public function user($user_id) { |
@@ -505,6 +505,9 @@ discard block |
||
| 505 | 505 | Returning value if permission found, otherwise returning NULL |
| 506 | 506 | */ |
| 507 | 507 | |
| 508 | + /** |
|
| 509 | + * @param string $key |
|
| 510 | + */ |
|
| 508 | 511 | public function get_permission_value($key, $check_parent = TRUE) { |
| 509 | 512 | // Default return value |
| 510 | 513 | $result = NULL; |
@@ -627,6 +630,9 @@ discard block |
||
| 627 | 630 | |
| 628 | 631 | // Get useremail string |
| 629 | 632 | |
| 633 | + /** |
|
| 634 | + * @return string |
|
| 635 | + */ |
|
| 630 | 636 | public function get_user_email() { |
| 631 | 637 | $user = $this->ci->db |
| 632 | 638 | ->where('id', $this->get_user_id()) |
@@ -290,7 +290,7 @@ |
||
| 290 | 290 | } |
| 291 | 291 | |
| 292 | 292 | /** |
| 293 | - * @return bool |
|
| 293 | + * @return false|null |
|
| 294 | 294 | */ |
| 295 | 295 | public function Querys() { |
| 296 | 296 | |
@@ -440,7 +440,7 @@ |
||
| 440 | 440 | } |
| 441 | 441 | |
| 442 | 442 | /** |
| 443 | - * @return true |
|
| 443 | + * @return boolean |
|
| 444 | 444 | */ |
| 445 | 445 | public function deinstallModule() { |
| 446 | 446 | |
@@ -308,7 +308,7 @@ discard block |
||
| 308 | 308 | * |
| 309 | 309 | * @param string $msg |
| 310 | 310 | * @param int $priority One of the Propel::LOG_* logging levels |
| 311 | - * @return boolean |
|
| 311 | + * @return boolean|null |
|
| 312 | 312 | */ |
| 313 | 313 | protected function log($msg, $priority = Propel::LOG_INFO) |
| 314 | 314 | { |
@@ -1101,7 +1101,7 @@ discard block |
||
| 1101 | 1101 | * TableMap::TYPE_COLNAME, TableMap::TYPE_FIELDNAME, TableMap::TYPE_NUM. |
| 1102 | 1102 | * The default key type is the column's TableMap::TYPE_PHPNAME. |
| 1103 | 1103 | * |
| 1104 | - * @param mixed $parser A AbstractParser instance, |
|
| 1104 | + * @param string $parser A AbstractParser instance, |
|
| 1105 | 1105 | * or a format name ('XML', 'YAML', 'JSON', 'CSV') |
| 1106 | 1106 | * @param string $data The source data to import from |
| 1107 | 1107 | * @param string $keyType The type of keys the array uses. |
@@ -8,7 +8,6 @@ |
||
| 8 | 8 | use Propel\Runtime\ActiveQuery\Criteria; |
| 9 | 9 | use Propel\Runtime\ActiveQuery\ModelCriteria; |
| 10 | 10 | use Propel\Runtime\ActiveRecord\ActiveRecordInterface; |
| 11 | -use Propel\Runtime\Collection\Collection; |
|
| 12 | 11 | use Propel\Runtime\Connection\ConnectionInterface; |
| 13 | 12 | use Propel\Runtime\Exception\BadMethodCallException; |
| 14 | 13 | use Propel\Runtime\Exception\LogicException; |
@@ -133,7 +133,6 @@ discard block |
||
| 133 | 133 | * $obj = $c->findPk(array(12, 34), $con); |
| 134 | 134 | * </code> |
| 135 | 135 | * |
| 136 | - * @param array[$id, $locale] $key Primary key to use for the query |
|
| 137 | 136 | * @param ConnectionInterface $con an optional connection object |
| 138 | 137 | * |
| 139 | 138 | * @return ChildBannerImageI18n|array|mixed the result, formatted by the current formatter |
@@ -478,7 +477,7 @@ discard block |
||
| 478 | 477 | /** |
| 479 | 478 | * Filter the query by a related \xbanners\models\BannerImage object |
| 480 | 479 | * |
| 481 | - * @param \xbanners\models\BannerImage|ObjectCollection $bannerImage The related object(s) to use as filter |
|
| 480 | + * @param BannerImage $bannerImage The related object(s) to use as filter |
|
| 482 | 481 | * @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL |
| 483 | 482 | * |
| 484 | 483 | * @throws \Propel\Runtime\Exception\PropelException |
@@ -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 |
@@ -348,7 +348,7 @@ discard block |
||
| 348 | 348 | * |
| 349 | 349 | * @see filterByBanners() |
| 350 | 350 | * |
| 351 | - * @param mixed $bannerId The value to use as filter. |
|
| 351 | + * @param integer $bannerId The value to use as filter. |
|
| 352 | 352 | * Use scalar values for equality. |
| 353 | 353 | * Use array values for in_array() equivalent. |
| 354 | 354 | * Use associative array('min' => $minValue, 'max' => $maxValue) for intervals. |
@@ -698,7 +698,7 @@ discard block |
||
| 698 | 698 | /** |
| 699 | 699 | * Filter the query by a related \xbanners\models\Banners object |
| 700 | 700 | * |
| 701 | - * @param \xbanners\models\Banners|ObjectCollection $banners The related object(s) to use as filter |
|
| 701 | + * @param Banners $banners The related object(s) to use as filter |
|
| 702 | 702 | * @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL |
| 703 | 703 | * |
| 704 | 704 | * @throws \Propel\Runtime\Exception\PropelException |
@@ -118,7 +118,6 @@ discard block |
||
| 118 | 118 | * $obj = $c->findPk(array(12, 34), $con); |
| 119 | 119 | * </code> |
| 120 | 120 | * |
| 121 | - * @param array[$id, $locale] $key Primary key to use for the query |
|
| 122 | 121 | * @param ConnectionInterface $con an optional connection object |
| 123 | 122 | * |
| 124 | 123 | * @return ChildBannersI18n|array|mixed the result, formatted by the current formatter |
@@ -364,7 +363,7 @@ discard block |
||
| 364 | 363 | /** |
| 365 | 364 | * Filter the query by a related \xbanners\models\Banners object |
| 366 | 365 | * |
| 367 | - * @param \xbanners\models\Banners|ObjectCollection $banners The related object(s) to use as filter |
|
| 366 | + * @param Banners $banners The related object(s) to use as filter |
|
| 368 | 367 | * @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL |
| 369 | 368 | * |
| 370 | 369 | * @throws \Propel\Runtime\Exception\PropelException |
@@ -146,7 +146,7 @@ |
||
| 146 | 146 | * $obj = $c->findPk(12, $con); |
| 147 | 147 | * </code> |
| 148 | 148 | * |
| 149 | - * @param mixed $key Primary key to use for the query |
|
| 149 | + * @param integer $key Primary key to use for the query |
|
| 150 | 150 | * @param ConnectionInterface $con an optional connection object |
| 151 | 151 | * |
| 152 | 152 | * @return ChildBanners|array|mixed the result, formatted by the current formatter |