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