vendor/markocupic/rotate_image/src/MarkocupicRotateImage.php line 19

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. /*
  4.  * This file is part of Rotate Image.
  5.  *
  6.  * (c) Marko Cupic 2023 <m.cupic@gmx.ch>
  7.  * @license MIT
  8.  * For the full copyright and license information,
  9.  * please view the LICENSE file that was distributed with this source code.
  10.  * @link https://github.com/markocupic/rotate_image
  11.  */
  12. namespace Markocupic\RotateImage;
  13. use Symfony\Component\HttpKernel\Bundle\Bundle;
  14. class MarkocupicRotateImage extends Bundle
  15. {
  16.     public function getPath(): string
  17.     {
  18.         return \dirname(__DIR__);
  19.     }
  20. }