Completed
Push — master ( a9bb55...a0d284 )
by
unknown
01:39
created
Command/MediaCleanupCommand.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
     public function configure()
16 16
     {
17 17
         $this->setName('alpixel:media:cleanup')
18
-             ->setDescription('Cleaning unused media');
18
+                ->setDescription('Cleaning unused media');
19 19
     }
20 20
 
21 21
     public function execute(InputInterface $input, OutputInterface $output)
@@ -23,8 +23,8 @@  discard block
 block discarded – undo
23 23
         $container = $this->getContainer();
24 24
 
25 25
         $container->get('doctrine.orm.entity_manager')
26
-                  ->getRepository('AlpixelMediaBundle:Media')
27
-                  ->findExpiredMedias();
26
+                    ->getRepository('AlpixelMediaBundle:Media')
27
+                    ->findExpiredMedias();
28 28
 
29 29
         $medias = $container->get('alpixel_media.manager')->cleanup();
30 30
         $output->writeln(sprintf('%s medias deleted', $medias));
Please login to merge, or discard this patch.