| 1 | <?php |
||
| 19 | final class UserWithEncoderFactory implements FactoryInterface |
||
| 20 | { |
||
| 21 | /** @var FactoryInterface */ |
||
| 22 | private $decoratedUserFactory; |
||
| 23 | |||
| 24 | /** @var string */ |
||
| 25 | private $encoderName; |
||
| 26 | |||
| 27 | public function __construct(FactoryInterface $decoratedUserFactory, string $encoderName) |
||
| 32 | |||
| 33 | public function createNew(): UserInterface |
||
| 42 | } |
||
| 43 |