Total Complexity | 6 |
Total Lines | 38 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
14 | class UnicodeLanguageIdentifierFakerData extends AbstractFakerDataProvider |
||
15 | { |
||
16 | /** |
||
17 | * @var array |
||
18 | */ |
||
19 | private $languages; |
||
20 | |||
21 | public function __construct(Generator $generator) |
||
22 | { |
||
23 | parent::__construct($generator); |
||
24 | $this->languages = $this->getLanguages(); |
||
25 | } |
||
26 | |||
27 | public function __invoke() |
||
34 | } |
||
35 | |||
36 | /** |
||
37 | * Using the updated language provider if it exists |
||
38 | * |
||
39 | * @return array |
||
40 | */ |
||
41 | private function getLanguages(): array |
||
54 |
This function has been deprecated. The supplier of the function has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the function will be removed and what other function to use instead.