Passed
Push — master ( 9f6a59...53a21b )
by Peter
02:22
created
src/Service/File/Downloader.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -162,11 +162,11 @@
 block discarded – undo
162 162
     protected function getReadStreamCallback($stream): callable
163 163
     {
164 164
         if (!is_resource($stream)) {
165
-            return function () {
165
+            return function() {
166 166
             };
167 167
         }
168 168
 
169
-        return function () use ($stream) {
169
+        return function() use ($stream) {
170 170
             while (!feof($stream)) {
171 171
                 print(@fread($stream, static::READ_LENGTH));
172 172
                 ob_flush();
Please login to merge, or discard this patch.
website-routes.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
  */
20 20
 $router->group(
21 21
     ['controllerNamespace' => 'AbterPhp\Files\Http\Controllers'],
22
-    function (Router $router) {
22
+    function(Router $router) {
23 23
         /** @see \AbterPhp\Files\Http\Controllers\Website\File::download() */
24 24
         $router->get(
25 25
             Routes::PATH_FILE,
Please login to merge, or discard this patch.
admin-routes.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
  */
20 20
 $router->group(
21 21
     ['controllerNamespace' => 'AbterPhp\Files\Http\Controllers'],
22
-    function (Router $router) {
22
+    function(Router $router) {
23 23
         $router->group(
24 24
             [
25 25
                 'path'       => PATH_ADMIN,
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
                     Authentication::class,
28 28
                 ],
29 29
             ],
30
-            function (Router $router) {
30
+            function(Router $router) {
31 31
                 $entities = [
32 32
                     'filecategories' => 'FileCategory',
33 33
                     'filedownloads'  => 'FileDownload',
Please login to merge, or discard this patch.
api-routes.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
  */
20 20
 $router->group(
21 21
     ['controllerNamespace' => 'AbterPhp\Files\Http\Controllers'],
22
-    function (Router $router) {
22
+    function(Router $router) {
23 23
         $router->group(
24 24
             [
25 25
                 'path'       => PATH_API,
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
                     Api::class,
28 28
                 ],
29 29
             ],
30
-            function (Router $router) {
30
+            function(Router $router) {
31 31
                 $entities = [
32 32
                     'filecategories' => 'FileCategory',
33 33
                     'filedownloads'  => 'FileDownload',
Please login to merge, or discard this patch.
src/Grid/Factory/File.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -125,7 +125,7 @@  discard block
 block discarded – undo
125 125
     {
126 126
         $attributeCallbacks = parent::getAttributeCallbacks();
127 127
 
128
-        $attributeCallbacks[Html5::ATTR_CLASS] = function ($attribute, Entity $entity) {
128
+        $attributeCallbacks[Html5::ATTR_CLASS] = function($attribute, Entity $entity) {
129 129
             return $entity->isWritable() ? $attribute : Component::INTENT_HIDDEN;
130 130
         };
131 131
 
@@ -139,7 +139,7 @@  discard block
 block discarded – undo
139 139
     {
140 140
         $urlGenerator = $this->urlGenerator;
141 141
 
142
-        $closure = function ($attribute, Entity $entity) use ($urlGenerator) {
142
+        $closure = function($attribute, Entity $entity) use ($urlGenerator) {
143 143
             try {
144 144
                 // @phan-suppress-next-line PhanTypeMismatchArgument
145 145
                 return $urlGenerator->createFromName($attribute, $entity->getFilesystemName());
Please login to merge, or discard this patch.