diff options
| author | Tim Almdal <tnalmdal@shaw.ca> | 2010-01-29 14:04:27 -0800 |
|---|---|---|
| committer | Tim Almdal <tnalmdal@shaw.ca> | 2010-01-29 14:04:27 -0800 |
| commit | c4e360431564627003e4c7864b5dd5a07297e91e (patch) | |
| tree | e50daa2b8e5071415fa7e15049ba940042955f11 /modules/user/models/user.php | |
| parent | e4d9ea3394ee2db82d9dee6c6ed78543fd0f78fb (diff) | |
Strongly type the argument list to the model::validate method.
Diffstat (limited to 'modules/user/models/user.php')
| -rw-r--r-- | modules/user/models/user.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/user/models/user.php b/modules/user/models/user.php index 78c31047..0cd634ea 100644 --- a/modules/user/models/user.php +++ b/modules/user/models/user.php @@ -62,7 +62,7 @@ class User_Model extends ORM implements User_Definition { /** * Specify our rules here so that we have access to the instance of this model. */ - public function validate($array=null) { + public function validate(Validation $array=null) { // validate() is recursive, only modify the rules on the outermost call. if (!$array) { $this->rules = array( |
