| 1 | <?php |
||
| 8 | trait AuditableWithDeletesTrait |
||
| 9 | { |
||
| 10 | use AuditableTrait; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * Boot the audit trait for a model. |
||
| 14 | * |
||
| 15 | * @return void |
||
| 16 | */ |
||
| 17 | public static function bootAuditableWithDeletesTrait() |
||
| 21 | |||
| 22 | /** |
||
| 23 | * Get user model who deleted the record. |
||
| 24 | * |
||
| 25 | * @return \Illuminate\Database\Eloquent\Relations\BelongsTo |
||
| 26 | */ |
||
| 27 | public function deleter() |
||
| 31 | |||
| 32 | /** |
||
| 33 | * Get column name for deleted by. |
||
| 34 | * |
||
| 35 | * @return string |
||
| 36 | */ |
||
| 37 | public function getDeletedByColumn() |
||
| 41 | |||
| 42 | /** |
||
| 43 | * Get deleted by user full name. |
||
| 44 | * |
||
| 45 | * @return string |
||
| 46 | */ |
||
| 47 | public function getDeletedByNameAttribute() |
||
| 51 | } |
||
| 52 |
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.