...
|
...
|
@@ -4,7 +4,7 @@ namespace Hood; |
|
|
use Yaf\Controller_Abstract;
|
|
|
use Hood\Helper\View as hoodView;
|
|
|
use Yaf;
|
|
|
|
|
|
use Hood\Validator as hoodValidator;
|
|
|
class Action extends Controller_Abstract
|
|
|
{
|
|
|
private $_viewLink = array();
|
...
|
...
|
@@ -168,6 +168,6 @@ class Action extends Controller_Abstract |
|
|
*/
|
|
|
public function validate(array $data, array $rules, array $messagesAttribute = array())
|
|
|
{
|
|
|
return Validator::make($data, $rules, $messagesAttribute);
|
|
|
return hoodValidator::make($data, $rules, $messagesAttribute);
|
|
|
}
|
|
|
} |
|
|
\ No newline at end of file |
...
|
...
|
|