Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

16 lines
269B

  1. <?php
  2. namespace common\logic\User;
  3. use common\logic\BaseService;
  4. use common\logic\FactoryInterface;
  5. class UserFactory extends BaseService implements FactoryInterface
  6. {
  7. public function create()
  8. {
  9. $user = new UserModel();
  10. return $user;
  11. }
  12. }