vendor/inspiredminds/symfony-mailer-command-bundle/src/SymfonyMailerCommandBundle.php line 17

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. /*
  4. * This file is part of the Symfony Mailer Command Bundle.
  5. *
  6. * (c) inspiredminds
  7. *
  8. * @license LGPL-3.0-or-later
  9. */
  10. namespace InspiredMinds\SymfonyMailerCommandBundle;
  11. use Symfony\Component\HttpKernel\Bundle\Bundle;
  12. class SymfonyMailerCommandBundle extends Bundle
  13. {
  14. public function getPath(): string
  15. {
  16. return \dirname(__DIR__);
  17. }
  18. }