Total Complexity | 4 |
Total Lines | 34 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | final class DictionarySpec extends ObjectBehavior |
||
13 | { |
||
14 | private Collection $dictionaries; |
||
15 | |||
16 | function let() |
||
21 | } |
||
22 | |||
23 | function it_is_initializable() |
||
26 | } |
||
27 | |||
28 | function it_can_generates_random_values(Dictionary $dictionary) |
||
36 | } |
||
37 | |||
38 | function it_can_generates_unique_random_values(Dictionary $dictionary) |
||
48 |
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.