Skip to content

Commit

Permalink
Merge pull request #53 from skipperbent/v3-development
Browse files Browse the repository at this point in the history
Version 3.6.1
  • Loading branch information
skipperbent authored Jan 16, 2018
2 parents e139d0b + 014d17c commit f419594
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Pecee/Pixie/Exception.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class Exception extends \Exception

protected $query;

public function __construct(string $message = '', int $code = 0, QueryObject $query = null)
public function __construct($message = '', $code = 0, $query = null)
{
parent::__construct($message, $code);
$this->query = $query;
Expand Down
2 changes: 1 addition & 1 deletion src/Pecee/Pixie/QueryBuilder/Adapters/BaseAdapter.php
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ protected function arrayStr(array $pieces, $glue = ',', $wrapSanitizer = true)
* @throws Exception
* @return array
*/
protected function buildCriteria(array $statements, $bindValues = true): array
protected function buildCriteria(array $statements, $bindValues = true)
{
$criteria = '';
$bindings = [[]];
Expand Down

0 comments on commit f419594

Please sign in to comment.