| 1 | <?php |
||
| 10 | final class UserWithEncoderFactory implements FactoryInterface |
||
| 11 | { |
||
| 12 | /** @var FactoryInterface */ |
||
| 13 | private $decoratedUserFactory; |
||
| 14 | |||
| 15 | /** @var string */ |
||
| 16 | private $encoderName; |
||
| 17 | |||
| 18 | public function __construct(FactoryInterface $decoratedUserFactory, string $encoderName) |
||
| 23 | |||
| 24 | public function createNew(): UserInterface |
||
| 33 | } |
||
| 34 |