Skip to content

Commit b013db5

Browse files
committed
Fix cs
1 parent 1ede4e0 commit b013db5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Plugin/AlwaysSeekableBodyPlugin.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
use Symfony\Component\OptionsResolver\OptionsResolver;
1313

1414
/**
15-
* Decorate the body of the request and the response if it's not seekable by using Http\Message\Stream\BufferedStream
15+
* Decorate the body of the request and the response if it's not seekable by using Http\Message\Stream\BufferedStream.
1616
*
1717
* @author Joel Wurtz <joel.wurtz@gmail.com>
1818
*/
@@ -34,7 +34,7 @@ public function __construct(array $config = [])
3434
$resolver = new OptionsResolver();
3535
$resolver->setDefaults([
3636
'use_file_buffer' => true,
37-
'memory_buffer_size' => 2097152
37+
'memory_buffer_size' => 2097152,
3838
]);
3939
$resolver->setAllowedTypes('use_file_buffer', 'bool');
4040
$resolver->setAllowedTypes('memory_buffer_size', 'int');

0 commit comments

Comments
 (0)