Passed
Pull Request — master (#498)
by Stepan
04:19
created
src/Stfalcon/Bundle/EventBundle/Admin/MailQueueAdmin.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -71,11 +71,11 @@
 block discarded – undo
71 71
             ->add('user.fullname', null, ['label' => 'Имя пользователя'])
72 72
             ->add('mail.title', null, ['label' => 'Название'])
73 73
             ->add('_action', 'actions', [
74
-                 'label' => 'Действие',
75
-                 'actions' => [
76
-                     'edit' => [],
77
-                     'delete' => [],
78
-                 ],
74
+                    'label' => 'Действие',
75
+                    'actions' => [
76
+                        'edit' => [],
77
+                        'delete' => [],
78
+                    ],
79 79
             ]);
80 80
     }
81 81
 
Please login to merge, or discard this patch.
src/Application/Bundle/DefaultBundle/Twig/AppDateTimeExtension.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
                     'листопада' => ['листопад', 'осінь'],
27 27
                     'грудня' => ['грудень', 'зима'],
28 28
                 ],
29
-             'en' =>
29
+                'en' =>
30 30
                 [
31 31
                     'January' => ['January', 'Winter'],
32 32
                     'February' => ['February', 'Winter'],
Please login to merge, or discard this patch.
src/Application/Bundle/DefaultBundle/Controller/UploadController.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -36,10 +36,10 @@
 block discarded – undo
36 36
 
37 37
         $fileConstraint = new Collection(
38 38
             [
39
-                 'file' => [
40
-                     new NotBlank(),
41
-                     new Image(),
42
-                 ],
39
+                    'file' => [
40
+                        new NotBlank(),
41
+                        new Image(),
42
+                    ],
43 43
             ]
44 44
         );
45 45
 
Please login to merge, or discard this patch.
src/Stfalcon/Bundle/EventBundle/Repository/TicketRepository.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -31,12 +31,12 @@
 block discarded – undo
31 31
         $qb = $this->createQueryBuilder('t');
32 32
 
33 33
         return $qb->join('t.event', 'e')
34
-                  ->where($qb->expr()->eq('e.active', ':active'))
35
-                  ->andWhere($qb->expr()->eq('t.user', ':user'))
36
-                  ->setParameters(['user' => $user, 'active' => true])
37
-                  ->orderBy('e.date', 'ASC')
38
-                  ->getQuery()
39
-                  ->getResult();
34
+                    ->where($qb->expr()->eq('e.active', ':active'))
35
+                    ->andWhere($qb->expr()->eq('t.user', ':user'))
36
+                    ->setParameters(['user' => $user, 'active' => true])
37
+                    ->orderBy('e.date', 'ASC')
38
+                    ->getQuery()
39
+                    ->getResult();
40 40
     }
41 41
 
42 42
     /**
Please login to merge, or discard this patch.