1 | <?php |
||
13 | class DocumentManagerHelper extends Helper |
||
14 | { |
||
15 | /** @var DocumentManager */ |
||
16 | protected $dm; |
||
17 | |||
18 | public function __construct(DocumentManager $dm) |
||
22 | |||
23 | public function getDocumentManager() : DocumentManager |
||
27 | |||
28 | /** |
||
29 | * Get the canonical name of this helper. |
||
30 | * |
||
31 | * @see \Symfony\Component\Console\Helper\HelperInterface::getName() |
||
32 | */ |
||
33 | public function getName() : string |
||
37 | } |
||
38 |