mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
Merge pull request #2056 from willmorgan/dataobj-validate-injector
NEW use Injector pattern to create ValidationResult in validate
This commit is contained in:
commit
2814e43568
@ -978,7 +978,7 @@ class DataObject extends ViewableData implements DataObjectInterface, i18nEntity
|
|||||||
* @return A {@link ValidationResult} object
|
* @return A {@link ValidationResult} object
|
||||||
*/
|
*/
|
||||||
protected function validate() {
|
protected function validate() {
|
||||||
$result = new ValidationResult();
|
$result = ValidationResult::create();
|
||||||
$this->extend('validate', $result);
|
$this->extend('validate', $result);
|
||||||
return $result;
|
return $result;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user