@@ -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 | * |