Completed
Pull Request — master (#4)
by Tomáš
04:30
created
DependencyInjection/Compiler/RegisterKernelListenersPass.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
                     $event['method'] = 'on'.preg_replace_callback([
44 44
                         '/(?<=\b)[a-z]/i',
45 45
                         '/[^a-z0-9]/i',
46
-                    ], function ($matches) {
46
+                    ], function($matches) {
47 47
                         return strtoupper($matches[0]);
48 48
                     }, $event['event']);
49 49
                     $event['method'] = preg_replace('/[^a-z0-9]/i', '', $event['method']);
Please login to merge, or discard this patch.
src/Core/DataProvider/DataProviderManager.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 /*
6 6
  * This file is a part of Sculpin.
Please login to merge, or discard this patch.
src/Bundle/SculpinBundle/Console/Application.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,6 @@
 block discarded – undo
20 20
 use Symfony\Component\Console\Output\ConsoleOutput;
21 21
 use Symfony\Component\Console\Output\OutputInterface;
22 22
 use Symfony\Component\HttpKernel\Bundle\BundleInterface;
23
-use Symfony\Component\HttpKernel\Kernel;
24 23
 use Symfony\Component\HttpKernel\KernelInterface;
25 24
 
26 25
 final class Application extends BaseApplication
Please login to merge, or discard this patch.
Bundle/MarkdownTwigCompatBundle/EventSubscriber/ConvertEventSubscriber.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -30,9 +30,9 @@
 block discarded – undo
30 30
      * @var array
31 31
      */
32 32
     protected static $addPlaceholderRe = array(
33
-        '/^({%\s+block\s+(\w+).+?%})$/m',  // {% %} style code
34
-        '/^({%\s+endblock\s+%})$/m',       // {% %} style code
35
-        '/^({{.+?}})$/m',                  // {{ }} style code
33
+        '/^({%\s+block\s+(\w+).+?%})$/m', // {% %} style code
34
+        '/^({%\s+endblock\s+%})$/m', // {% %} style code
35
+        '/^({{.+?}})$/m', // {{ }} style code
36 36
     );
37 37
 
38 38
     /**
Please login to merge, or discard this patch.