Total Complexity | 4 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
20 | final class IsEnabledQueryBuilderSpec extends ObjectBehavior |
||
21 | { |
||
22 | function let(): void |
||
|
|||
23 | { |
||
24 | $this->beConstructedWith('enabled'); |
||
25 | } |
||
26 | |||
27 | function it_is_initializable(): void |
||
30 | } |
||
31 | |||
32 | function it_implements_query_builder_interface(): void |
||
35 | } |
||
36 | |||
37 | function it_builds_query(): void |
||
40 | } |
||
41 | } |
||
42 |
Adding explicit visibility (
private
,protected
, orpublic
) is generally recommend to communicate to other developers how, and from where this method is intended to be used.