Total Complexity | 3 |
Total Lines | 40 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | final class DictionaryDataCollectorSpec extends ObjectBehavior |
||
11 | { |
||
12 | function it_is_initializable() |
||
|
|||
13 | { |
||
14 | $this->shouldHaveType(DictionaryDataCollector::class); |
||
15 | } |
||
16 | |||
17 | function it_collects_data_from_dictionaries() |
||
42 | ], |
||
43 | ], |
||
44 | ]); |
||
45 | } |
||
46 | |||
47 | function it_has_a_name() |
||
50 | } |
||
51 | } |
||
52 |
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.