@@ -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 | * |
@@ -63,7 +63,7 @@ |
||
| 63 | 63 | * A static method that attempts to return a SearchProviderInterface instance |
| 64 | 64 | * based on the name of the provider class supplied. |
| 65 | 65 | * |
| 66 | - * @param $providerName The class name of the provider class, should be fully-qualified. |
|
| 66 | + * @param string $providerName The class name of the provider class, should be fully-qualified. |
|
| 67 | 67 | * |
| 68 | 68 | * @throws \Alpha\Exception\IllegalArguementException; |
| 69 | 69 | * |
@@ -1162,7 +1162,7 @@ discard block |
||
| 1162 | 1162 | * to be overridden in case you want to do something different with the ID of your objects outside |
| 1163 | 1163 | * of the standard 11 digit OID sequence used internally in Alpha. |
| 1164 | 1164 | * |
| 1165 | - * @return int 11 digit zero-padded OID value. |
|
| 1165 | + * @return string 11 digit zero-padded OID value. |
|
| 1166 | 1166 | * |
| 1167 | 1167 | * @since 1.0 |
| 1168 | 1168 | */ |
@@ -1179,7 +1179,7 @@ discard block |
||
| 1179 | 1179 | * Gets the OID for the object in zero-padded format (same as getID()). This version is final so cannot |
| 1180 | 1180 | * be overridden. |
| 1181 | 1181 | * |
| 1182 | - * @return int 11 digit zero-padded OID value. |
|
| 1182 | + * @return string 11 digit zero-padded OID value. |
|
| 1183 | 1183 | * |
| 1184 | 1184 | * @since 1.0 |
| 1185 | 1185 | */ |
@@ -2176,7 +2176,7 @@ discard block |
||
| 2176 | 2176 | /** |
| 2177 | 2177 | * Starts a new database transaction. |
| 2178 | 2178 | * |
| 2179 | - * @param $BO The ActiveRecord instance to pass to the database provider. Leave empty to have a new Person passed. |
|
| 2179 | + * @param ActiveRecord $BO The ActiveRecord instance to pass to the database provider. Leave empty to have a new Person passed. |
|
| 2180 | 2180 | * |
| 2181 | 2181 | * @since 1.0 |
| 2182 | 2182 | * |
@@ -2209,7 +2209,7 @@ discard block |
||
| 2209 | 2209 | /** |
| 2210 | 2210 | * Commits the current database transaction. |
| 2211 | 2211 | * |
| 2212 | - * @param $BO The ActiveRecord instance to pass to the database provider. Leave empty to have a new Person passed. |
|
| 2212 | + * @param ActiveRecord $BO The ActiveRecord instance to pass to the database provider. Leave empty to have a new Person passed. |
|
| 2213 | 2213 | * |
| 2214 | 2214 | * @since 1.0 |
| 2215 | 2215 | * |
@@ -2242,7 +2242,7 @@ discard block |
||
| 2242 | 2242 | /** |
| 2243 | 2243 | * Aborts the current database transaction. |
| 2244 | 2244 | * |
| 2245 | - * @param $BO The ActiveRecord instance to pass to the database provider. Leave empty to have a new Person passed. |
|
| 2245 | + * @param ActiveRecord $BO The ActiveRecord instance to pass to the database provider. Leave empty to have a new Person passed. |
|
| 2246 | 2246 | * |
| 2247 | 2247 | * @since 1.0 |
| 2248 | 2248 | * |
@@ -2413,7 +2413,7 @@ discard block |
||
| 2413 | 2413 | /** |
| 2414 | 2414 | * Check to see if an attribute exists on the BO. |
| 2415 | 2415 | * |
| 2416 | - * @param $attribute The attribute name. |
|
| 2416 | + * @param string $attribute The attribute name. |
|
| 2417 | 2417 | * |
| 2418 | 2418 | * @return bool |
| 2419 | 2419 | * |
@@ -230,7 +230,7 @@ |
||
| 230 | 230 | /** |
| 231 | 231 | * Getter for the name. |
| 232 | 232 | * |
| 233 | - * @return string |
|
| 233 | + * @return SmallText |
|
| 234 | 234 | * |
| 235 | 235 | * @since 1.0 |
| 236 | 236 | */ |
@@ -2363,11 +2363,11 @@ |
||
| 2363 | 2363 | * parameters. If arrays of attribute names and values are provided, only those will be bound to |
| 2364 | 2364 | * the supplied statement. |
| 2365 | 2365 | * |
| 2366 | - * @param mysqli_stmt $stmt The SQL statement to bind to. |
|
| 2366 | + * @param \mysqli_stmt $stmt The SQL statement to bind to. |
|
| 2367 | 2367 | * @param array Optional array of BO attributes. |
| 2368 | 2368 | * @param array Optional array of BO values. |
| 2369 | 2369 | * |
| 2370 | - * @return mysqli_stmt |
|
| 2370 | + * @return \mysqli_stmt |
|
| 2371 | 2371 | * |
| 2372 | 2372 | * @since 1.1 |
| 2373 | 2373 | */ |