Robert Pustułka 7 years ago
parent
commit
0ec1bc996c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tests/test_app/TestApp/Controller/RequestActionController.php

+ 1 - 1
tests/test_app/TestApp/Controller/RequestActionController.php

@@ -188,7 +188,7 @@ class RequestActionController extends AppController
     public function uploaded_files()
     {
         $files = Hash::flatten($this->request->getUploadedFiles());
-        $names = collection($files)->map(function(UploadedFileInterface $file) {
+        $names = collection($files)->map(function (UploadedFileInterface $file) {
             return $file->getClientFilename();
         });