Completed
Pull Request — master (#4)
by dan
14:39
created
Maker/NotificationMaker.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
         $command
35 35
             ->setDescription('Creates a new notification class')
36 36
             ->addArgument('name', InputArgument::OPTIONAL, 'The name of the notification class (e.g. <fg=yellow>NewUserNotification</>)')
37
-            ->setHelp(file_get_contents(__DIR__.'/../Resources/help/MakeNotification.txt'))
37
+            ->setHelp(file_get_contents(__DIR__ . '/../Resources/help/MakeNotification.txt'))
38 38
         ;
39 39
     }
40 40
 
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
 
58 58
         $generator->generateClass(
59 59
             $voterClassNameDetails->getFullName(),
60
-            __DIR__.'/../Resources/skeleton/notification/Notification.tpl.php',
60
+            __DIR__ . '/../Resources/skeleton/notification/Notification.tpl.php',
61 61
             []
62 62
         );
63 63
 
Please login to merge, or discard this patch.
NotificationBundle.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,6 +11,6 @@
 block discarded – undo
11 11
 {
12 12
     public function build(ContainerBuilder $container)
13 13
     {
14
-        $container->addCompilerPass(new AdapterPass(),PassConfig::TYPE_BEFORE_OPTIMIZATION, 10);
14
+        $container->addCompilerPass(new AdapterPass(), PassConfig::TYPE_BEFORE_OPTIMIZATION, 10);
15 15
     }
16 16
 }
Please login to merge, or discard this patch.