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