Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

DeliveryNoteDefinition.php 233B

12345678910111213
  1. <?php
  2. namespace domain\Document\DeliveryNote;
  3. use domain\_\AbstractDefinition;
  4. class DeliveryNoteDefinition extends AbstractDefinition
  5. {
  6. public function getEntityFqcn(): string
  7. {
  8. return DeliveryNote::class;
  9. }
  10. }