Skip to content

Commit

Permalink
CS: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
f3l1x committed Jun 20, 2018
1 parent 64a413d commit 399098b
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions src/DI/DbalConsoleExtension.php
Expand Up @@ -31,9 +31,7 @@ public function loadConfiguration(): void
}

// Skip if it's not CLI mode
if (!$this->cliMode) {
return;
}
if (!$this->cliMode) return;

$builder = $this->getContainerBuilder();

Expand Down Expand Up @@ -65,9 +63,7 @@ public function loadConfiguration(): void
public function beforeCompile(): void
{
// Skip if it's not CLI mode
if (!$this->cliMode) {
return;
}
if (!$this->cliMode) return;

$builder = $this->getContainerBuilder();

Expand Down

0 comments on commit 399098b

Please sign in to comment.