Completed
Push — master ( 31082c...99327a )
by Dev
12:40
created
src/Form/MultiStepMessageForm.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -21,8 +21,8 @@
 block discarded – undo
21 21
     {
22 22
         $form = $this->initForm();
23 23
 
24
-        $form->add('authorEmail', EmailType::class, ['constraints' => $this->getAuthorEmailConstraints()]);
25
-        $form->add('authorName', null, ['constraints' => $this->getAuthorNameConstraints()]);
24
+        $form->add('authorEmail', EmailType::class, [ 'constraints' => $this->getAuthorEmailConstraints() ]);
25
+        $form->add('authorName', null, [ 'constraints' => $this->getAuthorNameConstraints() ]);
26 26
 
27 27
         return $form;
28 28
     }
Please login to merge, or discard this patch.
src/Form/FormTrait.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -101,7 +101,7 @@  discard block
 block discarded – undo
101 101
             // sinon, passer l'id dans la session plutôt que dans la requête
102 102
         }
103 103
 
104
-        $form = $this->formFactory->createBuilder(FormType::class, $this->message, []);
104
+        $form = $this->formFactory->createBuilder(FormType::class, $this->message, [ ]);
105 105
 
106 106
         $form->setAction($this->router->generate('piedweb_cms_conversation', [
107 107
             'type' => $this->getType(),
@@ -115,7 +115,7 @@  discard block
 block discarded – undo
115 115
 
116 116
     public function getCurrentStep(): FormBuilderInterface
117 117
     {
118
-        $currentStepMethod = 'getStep'.self::$step[$this->getStep()];
118
+        $currentStepMethod = 'getStep'.self::$step[ $this->getStep() ];
119 119
 
120 120
         return $this->$currentStepMethod();
121 121
     }
@@ -127,7 +127,7 @@  discard block
 block discarded – undo
127 127
      */
128 128
     public function validCurrentStep($form): string
129 129
     {
130
-        $currentStepMethod = 'valid'.self::$step[$this->getStep()];
130
+        $currentStepMethod = 'valid'.self::$step[ $this->getStep() ];
131 131
         if (method_exists($this, $currentStepMethod)) {
132 132
             return  $this->$currentStepMethod($form);
133 133
         }
@@ -201,7 +201,7 @@  discard block
 block discarded – undo
201 201
 
202 202
     protected function getNextStepFunctionName()
203 203
     {
204
-        $getFormMethod = 'getStep'.self::$step[$this->getNextStep()];
204
+        $getFormMethod = 'getStep'.self::$step[ $this->getNextStep() ];
205 205
         if (!method_exists($this, $getFormMethod)) {
206 206
             return false;
207 207
         }
Please login to merge, or discard this patch.
src/Form/NewsletterForm.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
     {
23 23
         $form = $this->initForm();
24 24
 
25
-        $form->add('authorName', null, ['constraints' => $this->getAuthorNameConstraints()]);
25
+        $form->add('authorName', null, [ 'constraints' => $this->getAuthorNameConstraints() ]);
26 26
 
27 27
         return $form;
28 28
     }
Please login to merge, or discard this patch.
src/Service/NewMessageMailNotifier.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@
 block discarded – undo
80 80
             ->subject(
81 81
                 $this->translator->trans(
82 82
                     'admin.conversation.notification.title.'.(count($messages) > 1 ? 'plural' : 'singular'),
83
-                    ['%appName%' => $this->appName]
83
+                    [ '%appName%' => $this->appName ]
84 84
                 )
85 85
             )
86 86
             ->from($this->emailFrom)
Please login to merge, or discard this patch.
src/Admin/ConversationAdmin.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -21,9 +21,9 @@  discard block
 block discarded – undo
21 21
 
22 22
     protected function configureFormFields(FormMapper $formMapper)
23 23
     {
24
-        $formMapper->with('admin.conversation.label.conversation', ['class' => 'col-md-8'])
24
+        $formMapper->with('admin.conversation.label.conversation', [ 'class' => 'col-md-8' ])
25 25
             ->add('content', TextareaType::class, [
26
-                'attr' => ['rows' => 6],
26
+                'attr' => [ 'rows' => 6 ],
27 27
                 'label' => 'admin.conversation.content.label',
28 28
             ])
29 29
             ->add('referring', TextType::class, [
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
             ])
35 35
             ->end();
36 36
 
37
-        $formMapper->with('admin.conversation.label.author', ['class' => 'col-md-4'])
37
+        $formMapper->with('admin.conversation.label.author', [ 'class' => 'col-md-4' ])
38 38
             ->add('authorEmail', null, [
39 39
                 'label' => 'admin.conversation.authorEmail.label',
40 40
             ])
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
             ])
52 52
             ->end();
53 53
 
54
-        $formMapper->with('admin.conversation.label.publishedAt', ['class' => 'col-md-4'])
54
+        $formMapper->with('admin.conversation.label.publishedAt', [ 'class' => 'col-md-4' ])
55 55
             ->add('publishedAt', DateTimePickerType::class, [
56 56
                 'required' => false,
57 57
                 'label' => '',
Please login to merge, or discard this patch.
src/Twig/AppExtension.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -25,8 +25,8 @@  discard block
 block discarded – undo
25 25
     public function getFunctions()
26 26
     {
27 27
         return [
28
-            new TwigFunction('listMessages', [$this, 'listMessages'], [
29
-                'is_safe' => ['html'],
28
+            new TwigFunction('listMessages', [ $this, 'listMessages' ], [
29
+                'is_safe' => [ 'html' ],
30 30
                 'needs_environment' => true,
31 31
             ]),
32 32
         ];
@@ -42,6 +42,6 @@  discard block
 block discarded – undo
42 42
         $messages = $this->em->getRepository($this->messageEntity)
43 43
             ->getMessagesPublishedByReferring($referring, $orderBy, $limit);
44 44
 
45
-        return $env->render($template, ['messages' => $messages]);
45
+        return $env->render($template, [ 'messages' => $messages ]);
46 46
     }
47 47
 }
Please login to merge, or discard this patch.
src/Repository/MessageRepository.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
             ->andWhere('m.publishedAt is NOT NULL')
22 22
             ->andWhere('m.referring <=  :referring')
23 23
             ->setParameter('referring', $referring)
24
-            ->orderBy('m.'.$orderBy[0], $orderBy[1])
24
+            ->orderBy('m.'.$orderBy[ 0 ], $orderBy[ 1 ])
25 25
             ->getQuery();
26 26
 
27 27
         return $q->getResult();
Please login to merge, or discard this patch.
src/Form/MessageForm.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -22,8 +22,8 @@
 block discarded – undo
22 22
         $form = $this->initForm();
23 23
 
24 24
         if (!isset($user) || !$this->getUser()) {
25
-            $form->add('authorEmail', EmailType::class, ['constraints' => $this->getAuthorEmailConstraints()]);
26
-            $form->add('authorName', null, ['constraints' => $this->getAuthorNameConstraints()]);
25
+            $form->add('authorEmail', EmailType::class, [ 'constraints' => $this->getAuthorEmailConstraints() ]);
26
+            $form->add('authorName', null, [ 'constraints' => $this->getAuthorNameConstraints() ]);
27 27
         }
28 28
 
29 29
         $form->add('content', TextareaType::class);
Please login to merge, or discard this patch.
src/Controller/ConversationFormController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@
 block discarded – undo
73 73
         if ($this->params->has('pwc.static.domain')) {
74 74
             $possibleOrigins = array_merge(
75 75
                 $this->params->has('pwc.conversation.possible_origins') ?
76
-                    $this->params->get('pwc.conversation.possible_origins') : [],
76
+                    $this->params->get('pwc.conversation.possible_origins') : [ ],
77 77
                 [
78 78
                     'https://'.$request->getHost(),
79 79
                     'https://'.$this->params->get('pwc.static.domain'),
Please login to merge, or discard this patch.