Completed
Pull Request — master (#6)
by Tomáš
08:03
created
src/Bundle/SculpinBundle/HttpKernel/AbstractKernel.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,6 @@
 block discarded – undo
15 15
 use Sculpin\Bundle\MarkdownBundle\SculpinMarkdownBundle;
16 16
 use Sculpin\Bundle\MarkdownTwigCompatBundle\SculpinMarkdownTwigCompatBundle;
17 17
 use Sculpin\Bundle\PaginationBundle\SculpinPaginationBundle;
18
-use Sculpin\Bundle\PostsBundle\SculpinPostsBundle;
19 18
 use Sculpin\Bundle\SculpinBundle\SculpinBundle;
20 19
 use Sculpin\Bundle\StandaloneBundle\SculpinStandaloneBundle;
21 20
 use Sculpin\Bundle\TwigBundle\SculpinTwigBundle;
Please login to merge, or discard this patch.
src/Bundle/MarkdownTwigCompatBundle/SculpinMarkdownTwigCompatBundle.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,6 +20,6 @@
 block discarded – undo
20 20
      */
21 21
     protected function getServicesFile() : string
22 22
     {
23
-        return __DIR__ . '/Resources/config/services.yml';
23
+        return __DIR__.'/Resources/config/services.yml';
24 24
     }
25 25
 }
Please login to merge, or discard this patch.
src/Bundle/SculpinBundle/SculpinBundle.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
41 41
 
42 42
     protected function getServicesFile() : string
43 43
     {
44
-        return __DIR__ . '/Resources/config/services.yml';
44
+        return __DIR__.'/Resources/config/services.yml';
45 45
     }
46 46
 
47 47
     protected function getConfiguration() : ConfigurationInterface
Please login to merge, or discard this patch.
src/Bundle/StandaloneBundle/SculpinStandaloneBundle.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,6 +26,6 @@
 block discarded – undo
26 26
 
27 27
     protected function getServicesFile() : string
28 28
     {
29
-        return __DIR__ . '/Resources/config/services.yml';
29
+        return __DIR__.'/Resources/config/services.yml';
30 30
     }
31 31
 }
Please login to merge, or discard this patch.
src/Bundle/TwigBundle/SculpinTwigBundle.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
 
37 37
     protected function getServicesFile() : string
38 38
     {
39
-        return __DIR__ . '/Resources/config/services.yml';
39
+        return __DIR__.'/Resources/config/services.yml';
40 40
     }
41 41
 
42 42
     protected function getConfiguration() : ConfigurationInterface
Please login to merge, or discard this patch.
src/Bundle/PaginationBundle/SculpinPaginationBundle.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
     protected function getServicesFile() : string
21 21
     {
22
-        return __DIR__ . '/Resources/config/services.yml';
22
+        return __DIR__.'/Resources/config/services.yml';
23 23
     }
24 24
 
25 25
     public function getConfiguration() : ConfigurationInterface
Please login to merge, or discard this patch.
src/Core/Generator/GeneratorManager.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -84,7 +84,7 @@
 block discarded – undo
84 84
         foreach ($generators as $generator) {
85 85
             $newTargetSources = [];
86 86
             foreach ($targetSources as $targetSource) {
87
-                foreach ((array)$generator->generate($targetSource) as $generatedSource) {
87
+                foreach ((array) $generator->generate($targetSource) as $generatedSource) {
88 88
                     $generatedSource->setIsGenerated();
89 89
                     $newTargetSources[] = $generatedSource;
90 90
                 }
Please login to merge, or discard this patch.