Passed
Push — develop ( 2b301a...ddf000 )
by Kevin
10:40 queued 01:33
created
lib/Config/Storage/RelationalDatabase.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -128,7 +128,7 @@
 block discarded – undo
128 128
         $table->addColumn(new Text('value'));
129 129
         $table->addColumn(new Varchar('context', 255));
130 130
         $table->addConstraint(
131
-            new UniqueKey(['path','context'], 'configuration_uniqueness_index')
131
+            new UniqueKey(['path', 'context'], 'configuration_uniqueness_index')
132 132
         );
133 133
 
134 134
         $sql = new Sql($this->adapter);
Please login to merge, or discard this patch.
lib/View/ViewConfiguration.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
     public function __construct(
32 32
         ServerRequestInterface $request,
33 33
         MessageInterface $response,
34
-        $viewDirectory = __DIR__ . '/views' ,
34
+        $viewDirectory = __DIR__ . '/views',
35 35
         $layoutFile = 'layout.phtml',
36 36
         $viewFile = 'view.phtml',
37 37
         $provideWrapperHtml = true,
Please login to merge, or discard this patch.