@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | $command |
34 | 34 | ->setDescription('Creates a new doctrine entity class for use as a database notification') |
35 | 35 | // ->addArgument('name', InputArgument::OPTIONAL, 'The name of the notification class (e.g. <fg=yellow>NewUserNotification</>)') |
36 | - ->setHelp(file_get_contents(__DIR__.'/../Resources/help/MakeDatabaseNotification.txt')) |
|
36 | + ->setHelp(file_get_contents(__DIR__ . '/../Resources/help/MakeDatabaseNotification.txt')) |
|
37 | 37 | ; |
38 | 38 | } |
39 | 39 | |
@@ -47,7 +47,7 @@ discard block |
||
47 | 47 | |
48 | 48 | $generator->generateClass( |
49 | 49 | $voterClassNameDetails->getFullName(), |
50 | - __DIR__.'/../Resources/skeleton/notification/DatabaseNotification.tpl.php', |
|
50 | + __DIR__ . '/../Resources/skeleton/notification/DatabaseNotification.tpl.php', |
|
51 | 51 | [] |
52 | 52 | ); |
53 | 53 |
@@ -34,7 +34,7 @@ discard block |
||
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 |
||
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 |
@@ -11,6 +11,6 @@ |
||
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 | } |
@@ -68,7 +68,7 @@ |
||
68 | 68 | // get the adapter name from the |
69 | 69 | // $adapterKey = $message->getChannel(); |
70 | 70 | $adapterKey = $this->channelConfigMap[$notification->getChannel()]['adapter']; |
71 | - $channelConfiguration = $this->channelConfigMap[$notification->getChannel()]['config']; |
|
71 | + $channelConfiguration = $this->channelConfigMap[$notification->getChannel()]['config']; |
|
72 | 72 | |
73 | 73 | // Get the adapter for this channel |
74 | 74 | // and inject it into the adapterless channel |