Total Complexity | 4 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
22 | final class ProductTaxonsBuilderSpec extends ObjectBehavior |
||
23 | { |
||
24 | function let(ProductTaxonsMapperInterface $productTaxonsMapper): void { |
||
26 | } |
||
27 | |||
28 | function it_is_initializable(): void |
||
29 | { |
||
30 | $this->shouldHaveType(ProductTaxonsBuilder::class); |
||
31 | $this->shouldHaveType(AbstractBuilder::class); |
||
32 | } |
||
33 | |||
34 | function it_implements_property_builder_interface(): void |
||
37 | } |
||
38 | |||
39 | function it_consumes_event(TransformEvent $event): void |
||
44 |
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.