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.

15 lines
357B

  1. <?php
  2. namespace common\logic\User\UserProducer\Service;
  3. use common\logic\AbstractSolver;
  4. use common\logic\User\UserProducer\Model\UserProducer;
  5. class UserProducerSolver extends AbstractSolver
  6. {
  7. public function hasOutstandingCredit(UserProducer $userProducer): bool
  8. {
  9. return $userProducer->credit < 0 || $userProducer->credit > 0;
  10. }
  11. }