Completed
Push — master ( e1f890...18d83b )
by Yann
06:35 queued 02:28
created
Repository/NotificationRepository.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@
 block discarded – undo
59 59
     /**
60 60
      * @param object $recipient
61 61
      *
62
-     * @return Notification[]
62
+     * @return integer
63 63
      */
64 64
     public function countUndeliveredRecipientNotification($recipient)
65 65
     {
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -47,8 +47,8 @@
 block discarded – undo
47 47
         $builder
48 48
             ->where(
49 49
                 $builder->expr()->andX(
50
-                    $builder->expr()->eq($alias . '.recipientClass', ':class'),
51
-                    $builder->expr()->eq($alias . '.recipientId', ':id')
50
+                    $builder->expr()->eq($alias.'.recipientClass', ':class'),
51
+                    $builder->expr()->eq($alias.'.recipientId', ':id')
52 52
                 )
53 53
             )
54 54
             ->setParameter('class', ClassUtils::getClass($recipient))
Please login to merge, or discard this patch.
Helper/ContentBuilder.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -54,13 +54,13 @@
 block discarded – undo
54 54
             ->setDefault('subject_parameters', [])
55 55
             ->setDefault('template_parameters', [])
56 56
             ->setDefault('template_vars', [])
57
-            ->setNormalizer('subject_parameters', function ($opts, $value) {
57
+            ->setNormalizer('subject_parameters', function($opts, $value) {
58 58
                 return array_values((array) $value);
59 59
             })
60
-            ->setNormalizer('template_parameters', function ($opts, $value) {
60
+            ->setNormalizer('template_parameters', function($opts, $value) {
61 61
                 return array_values((array) $value);
62 62
             })
63
-            ->setNormalizer('template_vars', function ($opts, $value) {
63
+            ->setNormalizer('template_vars', function($opts, $value) {
64 64
                 return (array) $value;
65 65
             })
66 66
         ;
Please login to merge, or discard this patch.
DependencyInjection/YokaiMessengerExtension.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
             $config['logging_channel']
45 45
         );
46 46
 
47
-        $loader = new XmlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config'));
47
+        $loader = new XmlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config'));
48 48
         $loader->load('services.xml');
49 49
 
50 50
         if (class_exists('Symfony\Bundle\SwiftmailerBundle\SwiftmailerBundle') &&
Please login to merge, or discard this patch.
DependencyInjection/Configuration.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -234,7 +234,7 @@  discard block
 block discarded – undo
234 234
      */
235 235
     private function stringToArray()
236 236
     {
237
-        return function ($value) {
237
+        return function($value) {
238 238
             return [$value];
239 239
         };
240 240
     }
@@ -244,7 +244,7 @@  discard block
 block discarded – undo
244 244
      */
245 245
     private function isNotHash()
246 246
     {
247
-        return function ($value) {
247
+        return function($value) {
248 248
             if (!is_array($value)) {
249 249
                 return true;
250 250
             }
@@ -264,7 +264,7 @@  discard block
 block discarded – undo
264 264
      */
265 265
     private function nodeRequiredIfEnabled($node)
266 266
     {
267
-        return function ($value) use ($node) {
267
+        return function($value) use ($node) {
268 268
             if (!$value['enabled']) {
269 269
                 return false;
270 270
             }
Please login to merge, or discard this patch.