Total Complexity | 1 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
9 | class WeightEmbeddableFakerData extends AbstractFakerDataProvider |
||
10 | { |
||
11 | |||
12 | /** |
||
13 | * This magic method means that the object is callable like a closure, |
||
14 | * and when that happens this invoke method is called. |
||
15 | * |
||
16 | * This method should return your fake data. You can use the generator to pull fake data from if that is useful |
||
17 | * |
||
18 | * @return mixed |
||
19 | */ |
||
20 | public function __invoke() |
||
32 |