Passed
Push — master ( 45ac95...d04c5a )
by Carsten
12:05
created
module/Jobs/test/JobsTest/Form/OrganizationSelectTest.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -51,9 +51,9 @@  discard block
 block discarded – undo
51 51
      */
52 52
     public function testSetAndGetHeadscripts()
53 53
     {
54
-        $this->assertEquals([ 'modules/Jobs/js/form.organization-select.js' ], $this->target->getHeadscripts());
55
-        $this->assertSame($this->target, $this->target->setHeadscripts([ 'script1' ]), 'Fluent interface broken on "setHeadscripts"');
56
-        $this->assertEquals([ 'script1' ], $this->target->getHeadscripts());
54
+        $this->assertEquals(['modules/Jobs/js/form.organization-select.js'], $this->target->getHeadscripts());
55
+        $this->assertSame($this->target, $this->target->setHeadscripts(['script1']), 'Fluent interface broken on "setHeadscripts"');
56
+        $this->assertEquals(['script1'], $this->target->getHeadscripts());
57 57
     }
58 58
 
59 59
     public function testSetsDefaultAttributesOnInit()
@@ -78,8 +78,8 @@  discard block
 block discarded – undo
78 78
         ]);
79 79
 
80 80
         return [
81
-            [ [ $org1 ], false ],
82
-            [ [ $org1 ], true ],
81
+            [[$org1], false],
82
+            [[$org1], true],
83 83
         ];
84 84
     }
85 85
 
Please login to merge, or discard this patch.
module/Jobs/test/JobsTest/Form/CustomerNoteTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
 
29 29
     private $target = CustomerNote::class;
30 30
 
31
-    private $inheritance = [ SummaryForm::class ];
31
+    private $inheritance = [SummaryForm::class];
32 32
 
33 33
     private $attributes = [
34 34
         'baseFieldset' => 'Jobs/CustomerNoteFieldset',
Please login to merge, or discard this patch.
module/Jobs/test/JobsTest/Form/AtsModeTest.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -42,9 +42,9 @@
 block discarded – undo
42 42
     {
43 43
         /* @var $target AtsMode */
44 44
         $target = $this->getMockBuilder('\Jobs\Form\AtsMode')
45
-                       ->disableOriginalConstructor()
46
-                       ->setMethods(array('addBaseFieldset', 'addButtonsFieldset'))
47
-                       ->getMock();
45
+                        ->disableOriginalConstructor()
46
+                        ->setMethods(array('addBaseFieldset', 'addButtonsFieldset'))
47
+                        ->getMock();
48 48
 
49 49
         $target->init();
50 50
 
Please login to merge, or discard this patch.
module/Jobs/test/JobsTest/Form/BaseFieldsetTest.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 = [ Fieldset::class ];
37
+    private $inheritance = [Fieldset::class];
38 38
 
39 39
     public function testInitialize()
40 40
     {
Please login to merge, or discard this patch.
module/Jobs/test/JobsTest/Form/ListFilterPersonalTest.php 2 patches
Indentation   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -26,21 +26,21 @@  discard block
 block discarded – undo
26 26
     public function testInit()
27 27
     {
28 28
         $target = $this->getMockBuilder('\Jobs\Form\ListFilterPersonalFieldset')
29
-                       ->setMethods(array('add', 'parentInit'))
30
-                       ->disableOriginalConstructor()
31
-                       ->getMock();
29
+                        ->setMethods(array('add', 'parentInit'))
30
+                        ->disableOriginalConstructor()
31
+                        ->getMock();
32 32
 
33 33
         $add1 = ['type'       => 'Radio',
34
-                 'name'       => 'by',
35
-                 'options'    => array(
36
-                     'value_options' => array(
37
-                         'all' => /*@translate*/ 'Show all jobs',
38
-                         'me'  => /*@translate*/ 'Show my jobs',
39
-                     ),
40
-                 ),
41
-                 'attributes' => array(
42
-                     'value' => 'all',
43
-                 )
34
+                    'name'       => 'by',
35
+                    'options'    => array(
36
+                        'value_options' => array(
37
+                            'all' => /*@translate*/ 'Show all jobs',
38
+                            'me'  => /*@translate*/ 'Show my jobs',
39
+                        ),
40
+                    ),
41
+                    'attributes' => array(
42
+                        'value' => 'all',
43
+                    )
44 44
         ];
45 45
 
46 46
         $add2 = [
@@ -59,11 +59,11 @@  discard block
 block discarded – undo
59 59
         ];
60 60
 
61 61
         $target->expects($this->exactly(2))
62
-               ->method('add')
63
-               ->withConsecutive(
64
-                   [$add1],
65
-                   [$add2]
66
-               )->will($this->returnSelf());
62
+                ->method('add')
63
+                ->withConsecutive(
64
+                    [$add1],
65
+                    [$add2]
66
+                )->will($this->returnSelf());
67 67
 
68 68
         /* @var $target \PHPUnit_Framework_MockObject_MockObject|\Jobs\Form\ListFilterLocationFieldset */
69 69
         $target->init();
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
 {
20 20
     public function testConstructor()
21 21
     {
22
-        $target= new ListFilterPersonalFieldset();
22
+        $target = new ListFilterPersonalFieldset();
23 23
         $this->assertInstanceOf('Jobs\Form\ListFilterPersonalFieldset', $target);
24 24
     }
25 25
 
Please login to merge, or discard this patch.
module/Jobs/test/JobsTest/Form/CustomerNoteFieldsetTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
         ],
40 40
     ];
41 41
 
42
-    private $inheritance = [ MetaDataFieldset::class, ViewPartialProviderInterface::class ];
42
+    private $inheritance = [MetaDataFieldset::class, ViewPartialProviderInterface::class];
43 43
 
44 44
     private $attributes = [
45 45
         'defaultPartial' => 'jobs/form/customer-note'
Please login to merge, or discard this patch.
module/Jobs/test/JobsTest/Form/ClassificationsFieldsetTest.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -36,14 +36,14 @@
 block discarded – undo
36 36
     private $target = [
37 37
         ClassificationsFieldset::class,
38 38
         '@testInitialize' => [
39
-            'mock' => ['setName' => ['with' => 'classifications'], 'add' ],
39
+            'mock' => ['setName' => ['with' => 'classifications'], 'add'],
40 40
         ],
41 41
     ];
42 42
 
43
-    private $inheritance = [ Fieldset::class ];
43
+    private $inheritance = [Fieldset::class];
44 44
 
45 45
     private $properties = [
46
-        ['hydrator', ['ignore_setter' => true, 'ignore_getter' => true, 'default@' => EntityHydrator::class ]],
46
+        ['hydrator', ['ignore_setter' => true, 'ignore_getter' => true, 'default@' => EntityHydrator::class]],
47 47
     ];
48 48
 
49 49
     public function testInitialize()
Please login to merge, or discard this patch.
module/Jobs/test/JobsTest/Form/ListFilterTest.php 1 patch
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -36,9 +36,9 @@  discard block
 block discarded – undo
36 36
     public function testInit()
37 37
     {
38 38
         $target = $this->getMockBuilder('\Jobs\Form\ListFilter')
39
-                       ->setMethods(array('add', 'setName', 'setAttributes'))
40
-                       ->disableOriginalConstructor()
41
-                       ->getMock();
39
+                        ->setMethods(array('add', 'setName', 'setAttributes'))
40
+                        ->disableOriginalConstructor()
41
+                        ->getMock();
42 42
 
43 43
         $add1 = [
44 44
             'type'    => 'Jobs/ListFilterBaseFieldset',
@@ -49,19 +49,19 @@  discard block
 block discarded – undo
49 49
         ];
50 50
 
51 51
         $target->expects($this->exactly(2))
52
-               ->method('add')
53
-               ->withConsecutive(
54
-                   array($add1),
55
-                   array($add2)
56
-               )->will($this->returnSelf());
52
+                ->method('add')
53
+                ->withConsecutive(
54
+                    array($add1),
55
+                    array($add2)
56
+                )->will($this->returnSelf());
57 57
 
58 58
         $target->expects($this->once())->method('setName')->with('jobs-list-filter');
59 59
         $target->expects($this->once())
60 60
             ->method('setAttributes')
61 61
             ->with([
62
-                       'id' => 'jobs-list-filter',
63
-                       'data-handle-by' => 'native'
64
-                   ]);
62
+                        'id' => 'jobs-list-filter',
63
+                        'data-handle-by' => 'native'
64
+                    ]);
65 65
         /* @var $target \PHPUnit_Framework_MockObject_MockObject|\Jobs\Form\ListFilter */
66 66
         $target->init();
67 67
     }
Please login to merge, or discard this patch.
module/Jobs/test/JobsTest/Form/ListFilterAdminTest.php 2 patches
Indentation   +25 added lines, -25 removed lines patch added patch discarded remove patch
@@ -26,28 +26,28 @@  discard block
 block discarded – undo
26 26
     public function testInit()
27 27
     {
28 28
         $target = $this->getMockBuilder('\Jobs\Form\ListFilterAdminFieldset')
29
-                       ->setMethods(array('add', 'parentInit'))
30
-                       ->disableOriginalConstructor()
31
-                       ->getMock();
29
+                        ->setMethods(array('add', 'parentInit'))
30
+                        ->disableOriginalConstructor()
31
+                        ->getMock();
32 32
 
33 33
         $add1 = ['type'       => 'Select',
34
-                 'name'       => 'status',
35
-                 'options'    => array(
36
-                     'value_options' => array(
37
-                         'all' => 'All',
38
-                         Status::ACTIVE => 'Active',
39
-                         Status::INACTIVE => 'Inactive',
40
-                         Status::CREATED => 'Created',
41
-                         Status::PUBLISH => 'Published',
42
-                         Status::REJECTED => 'Rejected',
43
-                         Status::EXPIRED =>  'Expired',
44
-                     )
45
-                 ),
46
-                 'attributes' => array(
47
-                     'value' => Status::CREATED,
48
-                     'data-searchbox'  => -1,  // hide the search box
49
-                     'data-allowclear' => 'false', // allow to clear a selected value
50
-                 )
34
+                    'name'       => 'status',
35
+                    'options'    => array(
36
+                        'value_options' => array(
37
+                            'all' => 'All',
38
+                            Status::ACTIVE => 'Active',
39
+                            Status::INACTIVE => 'Inactive',
40
+                            Status::CREATED => 'Created',
41
+                            Status::PUBLISH => 'Published',
42
+                            Status::REJECTED => 'Rejected',
43
+                            Status::EXPIRED =>  'Expired',
44
+                        )
45
+                    ),
46
+                    'attributes' => array(
47
+                        'value' => Status::CREATED,
48
+                        'data-searchbox'  => -1,  // hide the search box
49
+                        'data-allowclear' => 'false', // allow to clear a selected value
50
+                    )
51 51
         ];
52 52
 
53 53
         $add2 = [
@@ -63,11 +63,11 @@  discard block
 block discarded – undo
63 63
         ];
64 64
 
65 65
         $target->expects($this->exactly(2))
66
-               ->method('add')
67
-               ->withConsecutive(
68
-                   [$add1],
69
-                   [$add2]
70
-               )->will($this->returnSelf());
66
+                ->method('add')
67
+                ->withConsecutive(
68
+                    [$add1],
69
+                    [$add2]
70
+                )->will($this->returnSelf());
71 71
 
72 72
         /* @var $target \PHPUnit_Framework_MockObject_MockObject|\Jobs\Form\ListFilterLocationFieldset */
73 73
         $target->init();
Please login to merge, or discard this 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.