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

11 lines
236B

  1. <?php
  2. namespace common\logic;
  3. abstract class AbstractContainer extends AbstractSingleton implements ContainerInterface
  4. {
  5. public function getEntityFqcn(): string
  6. {
  7. return $this->getDefinition()->getEntityFqcn();
  8. }
  9. }