Completed
Pull Request — master (#9)
by Tomáš
03:16
created
src/Core/Sculpin.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,6 @@
 block discarded – undo
11 11
 
12 12
 namespace Symplify\PHP7_Sculpin\Core;
13 13
 
14
-use Dflydev\DotAccessConfiguration\Configuration;
15 14
 use Symplify\PHP7_Sculpin\Core\Converter\ConverterManager;
16 15
 use Symplify\PHP7_Sculpin\Core\Event\SculpinEvents;
17 16
 use Symplify\PHP7_Sculpin\Core\Event\SourceSetEvent;
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -88,7 +88,7 @@
 block discarded – undo
88 88
 
89 89
         $this->eventDispatcher->dispatch(SculpinEvents::EVENT_BEFORE_RUN, new SourceSetEvent($sourceSet));
90 90
 
91
-        if ($updatedSources = array_filter($sourceSet->updatedSources(), function ($source) {
91
+        if ($updatedSources = array_filter($sourceSet->updatedSources(), function($source) {
92 92
             return !$source->isGenerated();
93 93
         })) {
94 94
             if (!$found) {
Please login to merge, or discard this patch.