Passed
Push — master ( c58a40...6d37ad )
by Mathias
10:02 queued 04:27
created
module/Applications/src/Repository/Subscriber.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
      */
26 26
     public function findByUri($uri, $create = false)
27 27
     {
28
-        $subscriber = $this->findOneBy(array( "uri" => $uri ));
28
+        $subscriber = $this->findOneBy(array("uri" => $uri));
29 29
         if (!isset($subscriber) && $create) {
30 30
             $subscriber = $this->create();
31 31
             $subscriber->uri = $uri;
Please login to merge, or discard this patch.
module/Applications/src/Form/BaseFieldset.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
     public function init()
35 35
     {
36 36
         $this->setHydrator(new \Core\Entity\Hydrator\EntityHydrator())
37
-             ->setName('base');
37
+                ->setName('base');
38 38
 
39 39
         $this->add(
40 40
             array(
Please login to merge, or discard this patch.
module/Applications/src/Form/ContactContainer.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
     public function init()
26 26
     {
27 27
         $this->setIsDisableCapable(false)
28
-             ->setIsDisableElementsCapable(false);
28
+                ->setIsDisableElementsCapable(false);
29 29
 
30 30
         $this->setForms(
31 31
             array(
Please login to merge, or discard this patch.
module/Applications/src/Form/Element/JobSelect.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
 class JobSelect extends Select implements HeadscriptProviderInterface
24 24
 {
25
-    private $scripts = [ 'modules/Applications/js/form.job-select.js' ];
25
+    private $scripts = ['modules/Applications/js/form.job-select.js'];
26 26
 
27 27
     /**
28 28
      * Sets the array of script names.
Please login to merge, or discard this patch.
module/Applications/src/Form/CarbonCopyFieldset.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
     public function init()
21 21
     {
22 22
         $this->setName('carboncopy')
23
-             ->setLabel('Options');
23
+                ->setLabel('Options');
24 24
 
25 25
         $this->add(
26 26
             array(
Please login to merge, or discard this patch.
module/Applications/src/Form/ApplicationsFilter.php 1 patch
Indentation   +38 added lines, -38 removed lines patch added patch discarded remove patch
@@ -35,50 +35,50 @@
 block discarded – undo
35 35
     protected function addElements()
36 36
     {
37 37
         $this->add(
38
-             [
39
-                 'type' => JobSelect::class,
40
-                 'name' => 'job',
41
-                 'options' => [
42
-                     'label' => /* @translate */ 'Enter job title',
43
-                     //'empty_option' => 'Enter job title',
44
-                 ],
45
-                 'attributes' => [
46
-                     'id' => 'job-filter',
47
-                     'class' => 'form-control',
48
-                     'data-placeholder' => 'Enter job title',
49
-                     'data-autoinit' => 'false',
50
-                     'data-submit-on-change' => 'true',
51
-                 ]
52
-             ]
38
+                [
39
+                    'type' => JobSelect::class,
40
+                    'name' => 'job',
41
+                    'options' => [
42
+                        'label' => /* @translate */ 'Enter job title',
43
+                        //'empty_option' => 'Enter job title',
44
+                    ],
45
+                    'attributes' => [
46
+                        'id' => 'job-filter',
47
+                        'class' => 'form-control',
48
+                        'data-placeholder' => 'Enter job title',
49
+                        'data-autoinit' => 'false',
50
+                        'data-submit-on-change' => 'true',
51
+                    ]
52
+                ]
53 53
         );
54 54
 
55 55
         $this->add(
56
-             [
57
-                 'type' => 'Applications\Form\Element\StatusSelect',
58
-                 'name' => 'status',
59
-                 'options' => [
60
-                     'label' => /* @translate */ 'Status',
61
-                 ],
62
-                 'attributes' => [
63
-                     'data-width' => '100%',
64
-                     'data-submit-on-change' => 'true',
65
-                     'data-placeholder' => /*@translate*/ 'all',
66
-                 ]
67
-             ]
56
+                [
57
+                    'type' => 'Applications\Form\Element\StatusSelect',
58
+                    'name' => 'status',
59
+                    'options' => [
60
+                        'label' => /* @translate */ 'Status',
61
+                    ],
62
+                    'attributes' => [
63
+                        'data-width' => '100%',
64
+                        'data-submit-on-change' => 'true',
65
+                        'data-placeholder' => /*@translate*/ 'all',
66
+                    ]
67
+                ]
68 68
         );
69 69
 
70 70
         $this->add(
71
-             ['type' => 'ToggleButton',
72
-                   'name' => 'unread',
73
-                   'options' => [
74
-                       'checked_value' => '1',
75
-                       'unchecked_value' => '0',
76
-                       'label' => 'unread',
77
-                   ],
78
-                 'attributes' => [
79
-                     'data-submit-on-change' => 'true',
80
-                 ]
81
-             ]
71
+                ['type' => 'ToggleButton',
72
+                    'name' => 'unread',
73
+                    'options' => [
74
+                        'checked_value' => '1',
75
+                        'unchecked_value' => '0',
76
+                        'label' => 'unread',
77
+                    ],
78
+                    'attributes' => [
79
+                        'data-submit-on-change' => 'true',
80
+                    ]
81
+                ]
82 82
         );
83 83
 
84 84
         $this->setButtonElement('unread');
Please login to merge, or discard this patch.
module/Applications/src/Form/FactsFieldset.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
     public function init()
35 35
     {
36 36
         $this->setHydrator(new \Core\Entity\Hydrator\EntityHydrator())
37
-             ->setName('base');
37
+                ->setName('base');
38 38
 
39 39
         $this->add(
40 40
             array(
Please login to merge, or discard this patch.
module/Applications/src/Form/Base.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
      *
25 25
      * @var string
26 26
      */
27
-    protected $label        = /*@translate*/ 'Cover Letter';
27
+    protected $label = /*@translate*/ 'Cover Letter';
28 28
     
29 29
     /**
30 30
      * {@inheritDoc}
Please login to merge, or discard this patch.
module/Applications/src/Form/Attributes.php 1 patch
Indentation   +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 init()
26 26
     {
27 27
         $this->setIsDisableCapable(false)
28
-             ->setIsDisableElementsCapable(false)
29
-             ->setAttribute('data-submit-on', 'checkbox');
28
+                ->setIsDisableElementsCapable(false)
29
+                ->setAttribute('data-submit-on', 'checkbox');
30 30
 
31 31
         $this->add(
32 32
             array(
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
                 'route' => 'lang/content',
55 55
                 'params' => array(
56 56
                     'view' => 'applications-privacy-policy'
57
-                 )
57
+                    )
58 58
             ),
59 59
             'attributes' => array(
60 60
                 'data-validate' => 'acceptedPrivacyPolicy',
Please login to merge, or discard this patch.