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.

17 lines
308B

  1. <?php
  2. namespace common\logic\Opinion\Wrapper;
  3. use common\logic\AbstractManager;
  4. use common\logic\Opinion\Service\OpinionUtils;
  5. /**
  6. * @mixin OpinionUtils
  7. */
  8. class OpinionManager extends AbstractManager
  9. {
  10. public function getContainerFqcn(): string
  11. {
  12. return OpinionContainer::class;
  13. }
  14. }