Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

InvoiceManager.php 366B

1 год назад
123456789101112131415161718
  1. <?php
  2. namespace common\logic\Document\Invoice;
  3. use common\logic\Document\Document\DocumentManager;
  4. use common\logic\PointSale\PointSale\InvoiceRepository;
  5. /**
  6. * @mixin InvoiceRepository
  7. * @mixin InvoiceBuilder
  8. */
  9. class InvoiceManager extends DocumentManager
  10. {
  11. public function __construct()
  12. {
  13. $this->setContainer(new InvoiceContainer());
  14. }
  15. }