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.

20 lines
390B

  1. <?php
  2. namespace common\services\Producer;
  3. use common\logic\BaseService;
  4. use common\models\Producer;
  5. use common\logic\FactoryInterface;
  6. class ProducerFactory extends BaseService implements FactoryInterface
  7. {
  8. public function create()
  9. {
  10. $producer = new Producer;
  11. $producer->order_deadline = 20;
  12. $producer->order_delay = 1;
  13. return $producer;
  14. }
  15. }