* Invoke the Validation sequence and run validation hooks if defined * - Before Validation Model Hooks * - Validation * - On validation success: After Validation Model Hooks * - On validation failure: Validation Failed Model Hooks * * @returns {Promise} * @private
()
| 90 | * @private |
| 91 | */ |
| 92 | async validate() { |
| 93 | return await (this.options.hooks ? this._validateAndRunHooks() : this._validate()); |
| 94 | } |
| 95 | |
| 96 | /** |
| 97 | * Invoke the Validation sequence and run hooks |
nothing calls this directly
no test coverage detected