| 1 | <?php |
||
| 21 | class KeywordFactory implements KeywordFactoryInterface |
||
| 22 | { |
||
| 23 | /** |
||
| 24 | * @var string |
||
| 25 | */ |
||
| 26 | private $className; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * Factory constructor. |
||
| 30 | * |
||
| 31 | * @param string $className |
||
| 32 | */ |
||
| 33 | public function __construct($className) |
||
| 37 | |||
| 38 | public function create(string $name, string $slug = null): KeywordInterface |
||
| 42 | } |
||
| 43 |