Files
yii/tests/unit/framework/base/NewBeforeValidateBehavior.php

9 lines
236 B
PHP

<?php
class NewBeforeValidateBehaviorException extends CException {}
class NewBeforeValidateBehavior extends CModelBehavior {
public function beforeValidate($event) {
throw new NewBeforeValidateBehaviorException();
}
}