vendor/sonata-project/media-bundle/src/Command/BaseCommand.php line 25

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. /*
  4.  * This file is part of the Sonata Project package.
  5.  *
  6.  * (c) Thomas Rabaix <[email protected]>
  7.  *
  8.  * For the full copyright and license information, please view the LICENSE
  9.  * file that was distributed with this source code.
  10.  */
  11. namespace Sonata\MediaBundle\Command;
  12. use Sonata\Doctrine\Model\ManagerInterface;
  13. use Sonata\MediaBundle\Provider\Pool;
  14. use Symfony\Bundle\FrameworkBundle\Command\ContainerAwareCommand;
  15. /**
  16.  * This command can be used to re-generate the thumbnails for all uploaded medias.
  17.  *
  18.  * Useful if you have existing media content and added new formats.
  19.  */
  20. abstract class BaseCommand extends ContainerAwareCommand
  21. {
  22.     /**
  23.      * @return ManagerInterface
  24.      */
  25.     public function getMediaManager()
  26.     {
  27.         return $this->getContainer()->get('sonata.media.manager.media');
  28.     }
  29.     /**
  30.      * @return Pool
  31.      */
  32.     public function getMediaPool()
  33.     {
  34.         return $this->getContainer()->get('sonata.media.pool');
  35.     }
  36. }