Passed
Pull Request — master (#580)
by ANTHONIUS
10:05
created
module/Jobs/test/JobsTest/Form/ListFilterAdminTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
 {
20 20
     public function testConstructor()
21 21
     {
22
-        $target= new ListFilterAdminFieldset();
22
+        $target = new ListFilterAdminFieldset();
23 23
         $this->assertInstanceOf('Jobs\Form\ListFilterAdminFieldset', $target);
24 24
     }
25 25
 
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
                  ),
46 46
                  'attributes' => array(
47 47
                      'value' => Status::CREATED,
48
-                     'data-searchbox'  => -1,  // hide the search box
48
+                     'data-searchbox'  => -1, // hide the search box
49 49
                      'data-allowclear' => 'false', // allow to clear a selected value
50 50
                  )
51 51
         ];
Please login to merge, or discard this patch.
module/Jobs/test/JobsTest/Form/ListFilterBaseTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
 {
20 20
     public function testConstructor()
21 21
     {
22
-        $target= new ListFilterBaseFieldset();
22
+        $target = new ListFilterBaseFieldset();
23 23
         $this->assertInstanceOf('Jobs\Form\ListFilterBaseFieldset', $target);
24 24
     }
25 25
 
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
 
33 33
         $add1 = ['type' => 'Hidden',
34 34
                  'name' => 'page',
35
-                 'attributes' => ['value' => 1,]
35
+                 'attributes' => ['value' => 1, ]
36 36
         ];
37 37
 
38 38
         $add2 = [
Please login to merge, or discard this patch.
module/Jobs/test/JobsTest/Form/CategoriesContainerTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
         ],
35 35
     ];
36 36
 
37
-    private $inheritance = [ WizardContainer::class ];
37
+    private $inheritance = [WizardContainer::class];
38 38
 
39 39
     public function testInitialize()
40 40
     {
Please login to merge, or discard this patch.
module/Jobs/test/JobsTest/Form/ListFilterLocationTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
 {
19 19
     public function testConstructor()
20 20
     {
21
-        $target= new ListFilterLocationFieldset();
21
+        $target = new ListFilterLocationFieldset();
22 22
         $this->assertInstanceOf('Jobs\Form\ListFilterLocationFieldset', $target);
23 23
     }
24 24
 
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
             ),
55 55
             'attributes' => [
56 56
                 'value'            => '10', // default distance
57
-                'data-searchbox'   => -1,  // hide the search box
57
+                'data-searchbox'   => -1, // hide the search box
58 58
                 'data-allowclear'  => 'false', // allow to clear a selected value
59 59
                 'data-placeholder' => 'Distance',
60 60
             ]
Please login to merge, or discard this patch.
module/Jobs/test/JobsTest/View/Helper/JsonLdTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
 
34 34
     private $target = JsonLd::class;
35 35
 
36
-    private $inheritance = [ AbstractHelper::class ];
36
+    private $inheritance = [AbstractHelper::class];
37 37
 
38 38
     public function propertiesProvider()
39 39
     {
Please login to merge, or discard this patch.
module/Jobs/test/JobsTest/View/Helper/JobOrganizationNameTest.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
      */
36 36
     private $target = JobOrganizationName::class;
37 37
 
38
-    private $inheritance = [ AbstractHelper::class ];
38
+    private $inheritance = [AbstractHelper::class];
39 39
 
40 40
     public function invokeTestData()
41 41
     {
@@ -58,10 +58,10 @@  discard block
 block discarded – undo
58 58
         $job4->setOrganization($org);
59 59
 
60 60
         return [
61
-            [ $job1, '', 'TestCompany' ],
62
-            [ $job2, '', 'OrgName'],
63
-            [ $job3, 'DefaultName', 'DefaultName' ],
64
-            [ $job4, '', 'Override'],
61
+            [$job1, '', 'TestCompany'],
62
+            [$job2, '', 'OrgName'],
63
+            [$job3, 'DefaultName', 'DefaultName'],
64
+            [$job4, '', 'Override'],
65 65
         ];
66 66
     }
67 67
 
Please login to merge, or discard this patch.
module/Jobs/test/JobsTest/View/Helper/AdminEditLinkTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
         'args' => 'getConstructorArgs',
37 37
     ];
38 38
 
39
-    private $inheritance = [ AbstractHelper::class ];
39
+    private $inheritance = [AbstractHelper::class];
40 40
 
41 41
     private function getConstructorArgs()
42 42
     {
Please login to merge, or discard this patch.
module/Jobs/test/JobsTest/Listener/LoadActiveOrganizationsTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@
 block discarded – undo
58 58
 
59 59
         $this->paginatorMock = $paginator;
60 60
 
61
-        return [ $paginator ];
61
+        return [$paginator];
62 62
     }
63 63
 
64 64
     public function testConstruction()
Please login to merge, or discard this patch.
module/Auth/test/Bootstrap.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 /** @var array $testConfig */
4
-$testConfig = include __DIR__ . '/TestConfig.php';
4
+$testConfig = include __DIR__.'/TestConfig.php';
5 5
 
6
-require_once __DIR__ . '/../../../test/Bootstrap.php';
6
+require_once __DIR__.'/../../../test/Bootstrap.php';
Please login to merge, or discard this patch.