Completed
Push — master ( 5e60c5...9447a1 )
by Dan
01:57
created
src/MockWithExpectations2Trait.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 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
 
@@ -193,14 +193,14 @@  discard block
 block discarded – undo
193 193
 
194 194
     private function getPublicMethods(ReflectionClass $reflection) : array
195 195
     {
196
-        return array_map(function (ReflectionMethod $method) {
196
+        return array_map(function(ReflectionMethod $method) {
197 197
             return $method->name;
198 198
         }, $reflection->getMethods(ReflectionMethod::IS_PUBLIC));
199 199
     }
200 200
 
201 201
     private function getAbstractMethods(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_ABSTRACT));
206 206
     }
Please login to merge, or discard this patch.