diff options
author | Ivan Enderlin <ivan.enderlin@hoa-project.net> | 2014-04-03 10:43:53 +0200 |
---|---|---|
committer | Ivan Enderlin <ivan.enderlin@hoa-project.net> | 2014-04-03 10:43:53 +0200 |
commit | 749d546c0f6d206efffd50d1ce72137a66de3a18 (patch) | |
tree | 149cedeccca0fd0f4d5fbc9b977c87be0993c6ce /Model | |
parent | 8fb22c76ae7bb72125a5e8414c82b9fcde480f37 (diff) | |
download | Praspel-749d546c0f6d206efffd50d1ce72137a66de3a18.zip Praspel-749d546c0f6d206efffd50d1ce72137a66de3a18.tar.gz Praspel-749d546c0f6d206efffd50d1ce72137a66de3a18.tar.bz2 |
Fix a PHP compatibility.
Diffstat (limited to 'Model')
-rw-r--r-- | Model/Behavior.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Model/Behavior.php b/Model/Behavior.php index 2ac98dc..ff2c3b3 100644 --- a/Model/Behavior.php +++ b/Model/Behavior.php @@ -202,7 +202,7 @@ class Behavior extends Clause { $handle = new Collection( new self($this), - function ( self $clause, $identifier ) { + function ( Behavior $clause, $identifier ) { $clause->setIdentifier($identifier); |