| Total Complexity | 3 |
| Total Lines | 35 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 11 | class AppExtension extends AbstractExtension |
||
| 12 | { |
||
| 13 | /** @var EntityManagerInterface */ |
||
| 14 | private $em; |
||
| 15 | |||
| 16 | /** @var string */ |
||
| 17 | private $messageEntity; |
||
| 18 | |||
| 19 | public function __construct(EntityManager $em, string $messageEntity) |
||
| 20 | { |
||
| 21 | $this->em = $em; |
||
| 22 | $this->messageEntity = $messageEntity; |
||
| 23 | } |
||
| 24 | |||
| 25 | public function getFunctions() |
||
| 31 | ]), |
||
| 32 | ]; |
||
| 33 | } |
||
| 34 | |||
| 35 | public function showConversation( |
||
| 48 |