Passed
Push — master ( f2e14b...2db21b )
by Robbie
04:12
created
src/Framework/Bootstrap.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,6 @@
 block discarded – undo
6 6
 use SilverStripe\Control\HTTPRequestBuilder;
7 7
 use SilverStripe\Core\CoreKernel;
8 8
 use SilverStripe\Core\Startup\ErrorControlChainMiddleware;
9
-use SilverStripe\ORM\DB;
10 9
 
11 10
 /**
12 11
  * Loads and configures SilverStripe
Please login to merge, or discard this patch.
src/Framework/Utility/ObjectUtilities.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@
 block discarded – undo
55 55
 
56 56
         // Handle vendor modules
57 57
         if ($folder === 'vendor') {
58
-            $folder .=  '/' . array_shift($folders) . '/' . array_shift($folders);
58
+            $folder .= '/' . array_shift($folders) . '/' . array_shift($folders);
59 59
         }
60 60
 
61 61
         $composerConfig = $this->getModuleComposerConfiguration($folder);
Please login to merge, or discard this patch.
tests/Command/Config/DumpCommandTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
     public function testExecuteWithFilteredResults()
51 51
     {
52 52
         $result = $this->executeTest(['--filter' => 'ViewableData'])->getDisplay();
53
-        $this->assertContains( RequestHandler::class, $result);
53
+        $this->assertContains(RequestHandler::class, $result);
54 54
         $this->assertNotContains('silverstripe\\core\\injector\\injector', $result);
55 55
     }
56 56
 
Please login to merge, or discard this patch.
tests/bootstrap.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
 
12 12
 define('CONSOLE_BASE_DIR', realpath(__DIR__ . '/..'));
13 13
 
14
-foreach([CONSOLE_BASE_DIR, realpath(CONSOLE_BASE_DIR . '/../..')] as $vendorPath) {
14
+foreach ([CONSOLE_BASE_DIR, realpath(CONSOLE_BASE_DIR . '/../..')] as $vendorPath) {
15 15
     if (file_exists($vendorPath . '/autoload.php')) {
16 16
         require_once $vendorPath . '/autoload.php';
17 17
     }
Please login to merge, or discard this patch.