Completed
Pull Request — master (#4)
by dan
14:39
created
Command/CreateNotificationCommand.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -157,6 +157,9 @@
 block discarded – undo
157 157
         $questionHelper->writeGeneratorSummary($output, []);
158 158
     }
159 159
 
160
+    /**
161
+     * @param InputInterface $input
162
+     */
160 163
     protected function createYesNoQuestion($questionHelper, $input, $channel)
161 164
     {
162 165
         $question = new Question(
Please login to merge, or discard this patch.
DependencyInjection/NotificationExtension.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,6 @@
 block discarded – undo
5 5
 use IrishDan\NotificationBundle\DependencyInjection\Factory\BroadcasterFactory;
6 6
 use IrishDan\NotificationBundle\DependencyInjection\Factory\ChannelFactory;
7 7
 use Symfony\Component\Config\FileLocator;
8
-use Symfony\Component\DependencyInjection\Compiler\PassConfig;
9 8
 use Symfony\Component\DependencyInjection\Definition;
10 9
 use Symfony\Component\DependencyInjection\Loader\YamlFileLoader;
11 10
 use Symfony\Component\DependencyInjection\Reference;
Please login to merge, or discard this patch.
Subscriber/NotificationChannelSubscriber.php 2 patches
Unused Use Statements   -5 removed lines patch added patch discarded remove patch
@@ -4,13 +4,8 @@
 block discarded – undo
4 4
 
5 5
 use IrishDan\NotificationBundle\Adapter\MessageAdapterInterface;
6 6
 use IrishDan\NotificationBundle\Channel\ChannelInterface;
7
-use IrishDan\NotificationBundle\Channel\EventChannel;
8
-use IrishDan\NotificationBundle\Event\MessageCreatedEvent;
9
-use IrishDan\NotificationBundle\Event\MessageDispatchedEvent;
10 7
 use IrishDan\NotificationBundle\Event\NotificationReadyToFormatEvent;
11 8
 use IrishDan\NotificationBundle\Exception\MessageDispatchException;
12
-use IrishDan\NotificationBundle\Message\MessageInterface;
13
-use Psr\Log\LoggerInterface;
14 9
 use Symfony\Component\EventDispatcher\EventDispatcherInterface;
15 10
 use Symfony\Component\EventDispatcher\EventSubscriberInterface;
16 11
 
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@
 block discarded – undo
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
Please login to merge, or discard this patch.
Maker/DatabaseNotificationMaker.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.
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.