Skip to content

Commit 0f5b5ce

Browse files
committed
fix CS
1 parent 82cea2c commit 0f5b5ce

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Dumper/PhpDumper.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -797,8 +797,8 @@ public function __construct()
797797

798798
if (count($scopes = $this->container->getScopes()) > 0) {
799799
$code .= "\n";
800-
$code .= " \$this->scopes = ".$this->dumpValue($scopes).";\n";
801-
$code .= " \$this->scopeChildren = ".$this->dumpValue($this->container->getScopeChildren()).";\n";
800+
$code .= ' $this->scopes = '.$this->dumpValue($scopes).";\n";
801+
$code .= ' $this->scopeChildren = '.$this->dumpValue($this->container->getScopeChildren()).";\n";
802802
}
803803

804804
$code .= $this->addMethodMap();
@@ -843,8 +843,8 @@ public function __construct()
843843

844844
$code .= "\n";
845845
if (count($scopes = $this->container->getScopes()) > 0) {
846-
$code .= " \$this->scopes = ".$this->dumpValue($scopes).";\n";
847-
$code .= " \$this->scopeChildren = ".$this->dumpValue($this->container->getScopeChildren()).";\n";
846+
$code .= ' $this->scopes = '.$this->dumpValue($scopes).";\n";
847+
$code .= ' $this->scopeChildren = '.$this->dumpValue($this->container->getScopeChildren()).";\n";
848848
} else {
849849
$code .= " \$this->scopes = array();\n";
850850
$code .= " \$this->scopeChildren = array();\n";

0 commit comments

Comments
 (0)