| Conditions | 2 |
| Paths | 2 |
| Total Lines | 8 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 29 | 5 | public static function getForgetArgs($method, $args) |
|
| 30 | { |
||
| 31 | 5 | $method = ltrim($method, 'about'); |
|
| 32 | 5 | $method = str_replace('Fetching', 'retrieved', $method); |
|
| 33 | 5 | $method = strtolower($method); |
|
| 34 | 5 | $method = $method == 'model' ? null : $method; |
|
| 35 | |||
| 36 | 5 | return [EloquentEventsListener::class, $args, $method]; |
|
| 37 | } |
||
| 50 |