Total Complexity | 4 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
21 | final class ChannelsBuilderSpec extends ObjectBehavior |
||
22 | { |
||
23 | function let(): void |
||
24 | { |
||
25 | $this->beConstructedWith('channels'); |
||
26 | } |
||
27 | |||
28 | function it_is_initializable(): void |
||
29 | { |
||
30 | $this->shouldHaveType(ChannelsBuilder::class); |
||
31 | $this->shouldHaveType(AbstractBuilder::class); |
||
32 | } |
||
33 | |||
34 | function it_implements_property_builder_interface(): void |
||
35 | { |
||
36 | $this->shouldHaveType(PropertyBuilderInterface::class); |
||
37 | } |
||
38 | |||
39 | function it_consumes_event(TransformEvent $event): void |
||
40 | { |
||
41 | $this->consumeEvent($event); |
||
42 | } |
||
44 |