Total Complexity | 4 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
21 | final class ProductAttributesByTaxonQueryBuilderSpec extends ObjectBehavior |
||
22 | { |
||
23 | function let(QueryBuilderInterface $hasTaxonQueryBuilder): void |
||
|
|||
24 | { |
||
25 | $this->beConstructedWith($hasTaxonQueryBuilder); |
||
26 | } |
||
27 | |||
28 | function it_is_initializable(): void |
||
29 | { |
||
30 | $this->shouldHaveType(ProductAttributesByTaxonQueryBuilder::class); |
||
31 | } |
||
32 | |||
33 | function it_implements_query_builder_interface(): void |
||
36 | } |
||
37 | |||
38 | function it_builds_query( |
||
47 |
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.