Total Complexity | 7 |
Total Lines | 39 |
Duplicated Lines | 0 % |
Coverage | 70.59% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
21 | class SoftDelete extends Behavior\SoftDelete |
||
22 | { |
||
23 | use SkippableTrait; |
||
24 | |||
25 | 56 | public function setField(string $field): void |
|
26 | { |
||
27 | 56 | $this->options['field'] = $field; |
|
28 | } |
||
29 | |||
30 | public function getField(): string |
||
33 | } |
||
34 | |||
35 | 56 | public function setValue(int $value): void |
|
36 | { |
||
37 | 56 | $this->options['value'] = $value; |
|
38 | } |
||
39 | |||
40 | public function getValue(): int |
||
43 | } |
||
44 | |||
45 | 56 | public function __construct(array $options = []) |
|
50 | } |
||
51 | |||
52 | 3 | public function notify(string $type, ModelInterface $model): ?bool |
|
62 |