Passed
Push — master ( 9447a1...d83ffa )
by Dan
01:28
created
src/MockWithExpectationsTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare (strict_types=1);
2
+declare(strict_types=1);
3 3
 
4 4
 namespace Nopolabs\Test;
5 5
 
Please login to merge, or discard this patch.
src/MockWithExpectations.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -200,14 +200,14 @@
 block discarded – undo
200 200
 
201 201
     private function getPublicMethods(ReflectionClass $reflection) : array
202 202
     {
203
-        return array_map(function (ReflectionMethod $method) {
203
+        return array_map(function(ReflectionMethod $method) {
204 204
             return $method->name;
205 205
         }, $reflection->getMethods(ReflectionMethod::IS_PUBLIC));
206 206
     }
207 207
 
208 208
     private function getAbstractMethods(ReflectionClass $reflection) : array
209 209
     {
210
-        return array_map(function (ReflectionMethod $method) {
210
+        return array_map(function(ReflectionMethod $method) {
211 211
             return $method->name;
212 212
         }, $reflection->getMethods(ReflectionMethod::IS_ABSTRACT));
213 213
     }
Please login to merge, or discard this patch.