Passed
Push — master ( 6292f6...e5b7ab )
by Mathias
10:49 queued 04:59
created
module/Core/test/CoreTestUtils/Constraint/ExtendsOrImplements.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -81,7 +81,7 @@
 block discarded – undo
81 81
 
82 82
     protected function failureDescription($other): string
83 83
     {
84
-        return ($other instanceof \ReflectionClass ? $other->getName() : get_class($other)) . ' ' . $this->toString();
84
+        return ($other instanceof \ReflectionClass ? $other->getName() : get_class($other)).' '.$this->toString();
85 85
     }
86 86
 
87 87
     protected function additionalFailureDescription($other): string
Please login to merge, or discard this patch.
Core/test/CoreTestUtils/Mock/ServiceManager/CreateInstanceFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@
 block discarded – undo
63 63
         
64 64
         $reflection = new \ReflectionClass($this->class);
65 65
         $args       = array_map(
66
-            function ($arg) use ($container) {
66
+            function($arg) use ($container) {
67 67
                 return is_string($arg) && 0 === strpos($arg, '@') ? $container->get(substr($arg, 1)) : $arg;
68 68
             },
69 69
             $this->args
Please login to merge, or discard this patch.
module/Core/test/CoreTestUtils/Mock/ServiceManager/PluginManagerMock.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -175,7 +175,7 @@
 block discarded – undo
175 175
                                 $methodName,
176 176
                                 '*' == $name ? '' : $name,
177 177
                                 $count,
178
-                                null === $options ? '' : ' with options hash ' . $optHash,
178
+                                null === $options ? '' : ' with options hash '.$optHash,
179 179
                                 $actual
180 180
                             )
181 181
                         );
Please login to merge, or discard this patch.
test/OrganizationsTest/Auth/Dependency/EmployeeListListenerTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@
 block discarded – undo
72 72
             ->getMock();
73 73
         $translator->expects($this->once())
74 74
             ->method('translate')
75
-            ->with($this->callback(function ($string) {
75
+            ->with($this->callback(function($string) {
76 76
                 return is_string($string);
77 77
             }))
78 78
             ->willReturn($expected);
Please login to merge, or discard this patch.
Organizations/test/OrganizationsTest/Auth/Dependency/ListListenerTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@
 block discarded – undo
72 72
             ->getMock();
73 73
         $translator->expects($this->once())
74 74
             ->method('translate')
75
-            ->with($this->callback(function ($string) {
75
+            ->with($this->callback(function($string) {
76 76
                 return is_string($string);
77 77
             }))
78 78
             ->willReturn($expected);
Please login to merge, or discard this patch.
Applications/test/ApplicationsTest/Auth/Dependency/ListListenerTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@
 block discarded – undo
72 72
             ->getMock();
73 73
         $translator->expects($this->once())
74 74
             ->method('translate')
75
-            ->with($this->callback(function ($string) {
75
+            ->with($this->callback(function($string) {
76 76
                 return is_string($string);
77 77
             }))
78 78
             ->willReturn($expected);
Please login to merge, or discard this patch.
module/Core/test/CoreTestUtils/Constraint/DefaultAttributesValues.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -81,7 +81,7 @@
 block discarded – undo
81 81
 
82 82
     protected function failureDescription($other): string
83 83
     {
84
-        return ($other instanceof \ReflectionClass ? $other->getName() : get_class($other)) . ' ' . $this->toString();
84
+        return ($other instanceof \ReflectionClass ? $other->getName() : get_class($other)).' '.$this->toString();
85 85
     }
86 86
 
87 87
     protected function additionalFailureDescription($other): string
Please login to merge, or discard this patch.
module/Jobs/src/Listener/JobEntityDependencyListener.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
 class JobEntityDependencyListener extends AbstractDependenciesListener
27 27
 {
28
-    protected $entityClasses = [ Job::class ];
28
+    protected $entityClasses = [Job::class];
29 29
 
30 30
     protected function dependencyCheck(DependencyResultEvent $event)
31 31
     {
Please login to merge, or discard this patch.
module/Jobs/src/Form/JobboardSearch.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@
 block discarded – undo
66 66
                 'attributes' => [
67 67
                     'value'            => '10', // default distance
68 68
                     'data-default-index' => '1',
69
-                    'data-searchbox'   => -1,  // hide the search box
69
+                    'data-searchbox'   => -1, // hide the search box
70 70
                     'data-allowclear'  => 'false', // allow to clear a selected value
71 71
                     'data-placeholder' => /*@translate*/ 'Distance',
72 72
                     'data-width'       => '100%',
Please login to merge, or discard this patch.