| 1 | <?php |
||
| 7 | trait ValidatedTrait |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * Boot the not-null-slug scope for a model. |
||
| 11 | * |
||
| 12 | * @return void |
||
| 13 | */ |
||
| 14 | public static function bootValidatedTrait() |
||
| 18 | |||
| 19 | /** |
||
| 20 | * Get a new query builder that also includes null-slug. |
||
| 21 | * |
||
| 22 | * @return \Illuminate\Database\Eloquent\Builder |
||
| 23 | */ |
||
| 24 | public static function withoutValidatedTrait() |
||
| 28 | |||
| 29 | public function getValidatedAtFieldSource() |
||
| 33 | } |
||
| 34 |
This check looks for methods that are used by a trait but not required by it.
To illustrate, let’s look at the following code example
The trait
Idableprovides a methodequalsIdthat in turn relies on the methodgetId(). If this method does not exist on a class mixing in this trait, the method will fail.Adding the
getId()as an abstract method to the trait will make sure it is available.