Completed
Push — master ( 4c14c6...4ad177 )
by Mathias
25s queued 15s
created
module/Settings/src/Form/AbstractSettingsForm.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@
 block discarded – undo
80 80
         }
81 81
         
82 82
         $fieldset->setUseAsBaseFieldset(true)
83
-                 ->setName('base');
83
+                    ->setName('base');
84 84
         
85 85
         $fieldset->setObject($object);
86 86
         $this->add($fieldset);
Please login to merge, or discard this patch.
module/Install/src/Factory/Controller/LazyControllerFactory.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@
 block discarded – undo
54 54
                             $parameter_instances[] = $container->get($cn);
55 55
                         } catch (\Exception $x) {
56 56
                             echo __CLASS__
57
-                                 . " couldn't create an instance of $cn to satisfy the constructor for $requestedName.";
57
+                                    . " couldn't create an instance of $cn to satisfy the constructor for $requestedName.";
58 58
                             exit;
59 59
                         }
60 60
                     } else {
Please login to merge, or discard this patch.
module/Install/src/Controller/Index.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -61,8 +61,8 @@
 block discarded – undo
61 61
             $routeMatch->setParam('action', $p);
62 62
             $response = $this->getResponse();
63 63
             $response->getHeaders()
64
-                     ->addHeaderLine('Content-Type', 'application/json')
65
-                     ->addHeaderLine('Content-Encoding', 'utf8');
64
+                        ->addHeaderLine('Content-Type', 'application/json')
65
+                        ->addHeaderLine('Content-Encoding', 'utf8');
66 66
         }
67 67
     }
68 68
 
Please login to merge, or discard this patch.
Factory/Controller/ApiJobListByOrganizationControllerFactoryTest.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -45,13 +45,13 @@
 block discarded – undo
45 45
                                 ->getMock();
46 46
 
47 47
         $repositoriesMock = $this->getMockBuilder('Core\Repository\RepositoryService')
48
-                               ->disableOriginalConstructor()
49
-                               ->getMock();
48
+                                ->disableOriginalConstructor()
49
+                                ->getMock();
50 50
 
51 51
         $repositoriesMock->expects($this->once())
52
-                       ->method('get')
53
-                       ->with('Jobs/Job')
54
-                       ->willReturn($jobRepositoryMock);
52
+                        ->method('get')
53
+                        ->with('Jobs/Job')
54
+                        ->willReturn($jobRepositoryMock);
55 55
 
56 56
         $apiJobDehydratorMock = $this->getMockBuilder('Jobs\Model\ApiJobDehydrator')
57 57
                                 ->disableOriginalConstructor()
Please login to merge, or discard this patch.
Jobs/test/JobsTest/Factory/Controller/JobboardControllerFactoryTest.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -46,8 +46,8 @@
 block discarded – undo
46 46
             ->getMock();
47 47
 
48 48
         $repositoriesMock = $this->getMockBuilder('Core\Repository\RepositoryService')
49
-                                 ->disableOriginalConstructor()
50
-                                 ->getMock();
49
+                                    ->disableOriginalConstructor()
50
+                                    ->getMock();
51 51
 
52 52
         $repositoriesMock->expects($this->once())
53 53
             ->method('get')
Please login to merge, or discard this patch.
module/Jobs/test/JobsTest/Factory/Service/JobsPublisherFactoryTest.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -31,8 +31,8 @@
 block discarded – undo
31 31
     {
32 32
         $this->testedObj = new JobsPublisherFactory();
33 33
         $this->mockJobsOptions = $this->getMockBuilder('Jobs\Options\ModuleOptions')
34
-                     ->disableOriginalConstructor()
35
-                     ->getMock();
34
+                        ->disableOriginalConstructor()
35
+                        ->getMock();
36 36
     }
37 37
 
38 38
     /**
Please login to merge, or discard this patch.
module/Jobs/test/JobsTest/Repository/CategoriesTest.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -61,16 +61,16 @@  discard block
 block discarded – undo
61 61
             ->getMock();
62 62
 
63 63
         $dm = $this->getMockBuilder(DocumentManager::class)
64
-                   ->disableOriginalConstructor()
64
+                    ->disableOriginalConstructor()
65 65
                     ->setMethods(['getEventManager'])
66
-                   ->getMock();
66
+                    ->getMock();
67 67
 
68 68
         $dm->expects($this->once())->method('getEventManager')->willReturn($evm);
69 69
 
70 70
         $persister = $this->getMockBuilder(DocumentPersister::class)
71
-                          ->disableOriginalConstructor()
72
-                          ->setMethods(['load', 'loadAll'])
73
-                          ->getMock();
71
+                            ->disableOriginalConstructor()
72
+                            ->setMethods(['load', 'loadAll'])
73
+                            ->getMock();
74 74
 
75 75
         $cursor = $this->getMockBuilder(Cursor::class)
76 76
                         ->disableOriginalConstructor()
@@ -90,8 +90,8 @@  discard block
 block discarded – undo
90 90
         $uow->expects($this->exactly(2))->method('getDocumentPersister')->willReturn($persister);
91 91
 
92 92
         $meta = $this->getMockBuilder(ClassMetadata::class)
93
-                     ->disableOriginalConstructor()
94
-                     ->getMock();
93
+                        ->disableOriginalConstructor()
94
+                        ->getMock();
95 95
         $meta->name = 'idonotcare';
96 96
 
97 97
         return [$dm, $uow, $meta];
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/ListFilterPersonalTest.php 1 patch
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.