Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

38 Zeilen
839B

  1. <?php
  2. namespace domain\_;
  3. use domain\Producer\Producer\Producer;
  4. use yii\base\ErrorException;
  5. trait ProducerContextTrait
  6. {
  7. protected ?Producer $producerContext = null;
  8. public function setProducerContext(Producer $producer = null): self
  9. {
  10. $this->producerContext = $producer;
  11. return $this;
  12. }
  13. public function getProducerContext(bool $throwExceptionIfNull = true): ?Producer
  14. {
  15. if($throwExceptionIfNull && is_null($this->producerContext)) {
  16. throw new ErrorException("Le contexte producteur n'est pas défini.");
  17. }
  18. return $this->producerContext;
  19. }
  20. public function getProducerContextId()
  21. {
  22. return $this->getProducerContext()->id;
  23. }
  24. public function isOutOfProducerContext(): bool
  25. {
  26. return !$this->producerContext;
  27. }
  28. }