Skip to content
This repository has been archived by the owner on Jan 30, 2020. It is now read-only.

Commit

Permalink
patch isset ternary on DbSelectFactory.php
Browse files Browse the repository at this point in the history
  • Loading branch information
samsonasik committed Sep 28, 2014
1 parent 8bf8250 commit cb2c9db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Adapter/Service/DbSelectFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public function createService(ServiceLocatorInterface $serviceLocator)
return new DbSelect(
$this->creationOptions[0],
$this->creationOptions[1],
isset($this->creationOptions[2]) ? : null
isset($this->creationOptions[2]) ? $this->creationOptions[2] : null
);
}
}

0 comments on commit cb2c9db

Please sign in to comment.