mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
Use injector to create ValidationResult
This commit is contained in:
parent
0e07f1a7f5
commit
c5956d6ac4
@ -1001,7 +1001,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