Skip to content

Commit

Permalink
Use strict comparison instead
Browse files Browse the repository at this point in the history
  • Loading branch information
lcobucci committed Nov 2, 2017
1 parent ed5d72b commit 6cb1bbf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Config/ContainerConfiguration.php
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ public function getDumpOptions(): array
{
$options = ['class' => $this->getClassName()];

if ($this->baseClass) {
if ($this->baseClass !== null) {
$options['base_class'] = $this->baseClass;
}

Expand Down

0 comments on commit 6cb1bbf

Please sign in to comment.