| Total Complexity | 2 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 8 | class SimpleGeneratorFactory implements FakeDataGeneratorFactoryInterface |
||
| 9 | { |
||
| 10 | |||
| 11 | /** |
||
| 12 | * @var string |
||
| 13 | */ |
||
| 14 | private $callback; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * SimpleGeneratorFactory constructor. |
||
| 18 | * @param string $fakerCallback |
||
| 19 | */ |
||
| 20 | public function __construct(string $fakerCallback) |
||
| 23 | } |
||
| 24 | |||
| 25 | public function create(Table $table, Column $column, SchemaHelper $schemaHelper) : FakeDataGeneratorInterface |
||
| 31 |