@@ -454,7 +454,7 @@ |
||
454 | 454 | * Custom version of the check rights method that only checks for a session for the config admin username/password, |
455 | 455 | * when the system database is not set-up. |
456 | 456 | * |
457 | - * @return bool |
|
457 | + * @return boolean|null |
|
458 | 458 | * |
459 | 459 | * @since 1.0 |
460 | 460 | */ |
@@ -67,7 +67,7 @@ |
||
67 | 67 | * A static method that attempts to return a ActiveRecordProviderInterface instance |
68 | 68 | * based on the name of the provider class supplied. |
69 | 69 | * |
70 | - * @param $providerName The fully-qualified class name of the provider class. |
|
70 | + * @param string $providerName The fully-qualified class name of the provider class. |
|
71 | 71 | * @param $BO The (optional) active record instance to pass to the persistance provider for mapping. |
72 | 72 | * |
73 | 73 | * @throws \Alpha\Exception\IllegalArguementException |
@@ -262,7 +262,6 @@ discard block |
||
262 | 262 | /** |
263 | 263 | * Get the name of the business object class that this class is related to. |
264 | 264 | * |
265 | - * @param string $RC |
|
266 | 265 | * |
267 | 266 | * @return string |
268 | 267 | * |
@@ -512,7 +511,7 @@ discard block |
||
512 | 511 | /** |
513 | 512 | * Getter for the Relation value. |
514 | 513 | * |
515 | - * @return mixed |
|
514 | + * @return string |
|
516 | 515 | * |
517 | 516 | * @since 1.0 |
518 | 517 | */ |
@@ -754,7 +753,7 @@ discard block |
||
754 | 753 | * Set the taggedClass property to the name of the tagged class when building relations |
755 | 754 | * to the TagObject BO. |
756 | 755 | * |
757 | - * @param $taggedClass |
|
756 | + * @param string $taggedClass |
|
758 | 757 | * |
759 | 758 | * @since 1.0 |
760 | 759 | */ |
@@ -222,6 +222,7 @@ discard block |
||
222 | 222 | * (non-PHPdoc) |
223 | 223 | * |
224 | 224 | * @see Alpha\Model\ActiveRecord::loadAllByAttribute() |
225 | + * @param string $attribute |
|
225 | 226 | */ |
226 | 227 | public function loadAllByAttribute($attribute, $value, $start = 0, $limit = 0, $orderBy = 'OID', $order = 'ASC', $ignoreClassType = false, $constructorArgs = array()) |
227 | 228 | { |
@@ -312,7 +313,7 @@ discard block |
||
312 | 313 | /** |
313 | 314 | * Returns an array of the OIDs of the related objects. |
314 | 315 | * |
315 | - * @return array |
|
316 | + * @return integer[] |
|
316 | 317 | * |
317 | 318 | * @since 1.0 |
318 | 319 | */ |
@@ -325,7 +326,7 @@ discard block |
||
325 | 326 | * Used to set the OIDs of the related objects. Pass a two-item array of OIDs, the first |
326 | 327 | * one being the left object OID, the second being the right. |
327 | 328 | * |
328 | - * @param array $OIDs |
|
329 | + * @param string[] $OIDs |
|
329 | 330 | * |
330 | 331 | * @since 1.0 |
331 | 332 | * |
@@ -63,7 +63,7 @@ |
||
63 | 63 | * A static method that attempts to return a CacheProviderInterface instance |
64 | 64 | * based on the name of the provider class supplied. |
65 | 65 | * |
66 | - * @param $providerName The class name of the provider class (fully qualified). |
|
66 | + * @param string $providerName The class name of the provider class (fully qualified). |
|
67 | 67 | * |
68 | 68 | * @throws \Alpha\Exception\IllegalArguementException |
69 | 69 | * |
@@ -63,7 +63,7 @@ |
||
63 | 63 | * A static method that attempts to return a HighlightProviderInterface instance |
64 | 64 | * based on the name of the provider class supplied. |
65 | 65 | * |
66 | - * @param $providerName The fully-qualified class name of the provider class, should implement Alpha\Util\Code\Highlight\HighlightProviderInterface |
|
66 | + * @param string $providerName The fully-qualified class name of the provider class, should implement Alpha\Util\Code\Highlight\HighlightProviderInterface |
|
67 | 67 | * |
68 | 68 | * @throws \Alpha\Exception\IllegalArguementException |
69 | 69 | * |
@@ -63,11 +63,11 @@ |
||
63 | 63 | * A static method that attempts to return a EmailProviderInterface instance |
64 | 64 | * based on the name of the provider class supplied. |
65 | 65 | * |
66 | - * @param $providerName The class name of the provider class (fully qualified). |
|
66 | + * @param string $providerName The class name of the provider class (fully qualified). |
|
67 | 67 | * |
68 | 68 | * @throws \Alpha\Exception\IllegalArguementException |
69 | 69 | * |
70 | - * @return \Alpha\Util\Http\Email\EmailProviderInterface |
|
70 | + * @return EmailProviderInterface|null |
|
71 | 71 | * |
72 | 72 | * @since 2.0 |
73 | 73 | */ |
@@ -300,7 +300,7 @@ discard block |
||
300 | 300 | * @param string $key The key to search for |
301 | 301 | * @param mixed $default If key is not found, return this instead |
302 | 302 | * |
303 | - * @return mixed |
|
303 | + * @return string |
|
304 | 304 | * |
305 | 305 | * @since 2.0 |
306 | 306 | */ |
@@ -391,7 +391,7 @@ discard block |
||
391 | 391 | * @param string $key The key to search for |
392 | 392 | * @param mixed $default If key is not found, return this instead |
393 | 393 | * |
394 | - * @return mixed |
|
394 | + * @return string |
|
395 | 395 | * |
396 | 396 | * @since 2.0 |
397 | 397 | */ |
@@ -63,7 +63,7 @@ |
||
63 | 63 | * A static method that attempts to return a SessionProviderInterface instance |
64 | 64 | * based on the name of the provider class supplied. |
65 | 65 | * |
66 | - * @param $providerName The class name of the provider class (fully qualified). |
|
66 | + * @param string $providerName The class name of the provider class (fully qualified). |
|
67 | 67 | * |
68 | 68 | * @throws \Alpha\Exception\IllegalArguementException |
69 | 69 | * |