| Total Complexity | 4 |
| Total Lines | 37 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | final class DictionarySpec extends ObjectBehavior |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * @var Dictionary\Collection |
||
| 16 | */ |
||
| 17 | private $dictionaries; |
||
| 18 | |||
| 19 | function let() |
||
| 24 | } |
||
| 25 | |||
| 26 | function it_is_initializable() |
||
| 29 | } |
||
| 30 | |||
| 31 | function it_can_generates_random_values(Dictionary $dictionary) |
||
| 39 | } |
||
| 40 | |||
| 41 | function it_can_generates_unique_random_values(Dictionary $dictionary) |
||
| 51 |
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.