You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

UserFactory.php 313B

3 years ago
12345678910111213141516
  1. <?php
  2. namespace Lc\CaracoleBundle\Factory\User;
  3. use Lc\SovBundle\Factory\User\UserFactory as SovUserFactory;
  4. use Lc\SovBundle\Model\User\UserInterface;
  5. class UserFactory extends SovUserFactory
  6. {
  7. public function create(): UserInterface
  8. {
  9. $user = parent::create();
  10. return $user;
  11. }
  12. }