Skip to content

Commit

Permalink
Fixed repositories implementations
Browse files Browse the repository at this point in the history
  • Loading branch information
benatespina committed Sep 19, 2017
1 parent e8851b1 commit 5577279
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,14 @@ public function query($aSpecification)
throw new \LogicException('This method is not implemented yet, maybe you can propose a PR :)');
}

/**
* {@inheritdoc}
*/
public function singleResultQuery($aSpecification)
{
throw new \LogicException('This method is not implemented yet, maybe you can propose a PR :)');
}

/**
* {@inheritdoc}
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,14 @@ public function query($aSpecification)
throw new \LogicException('This method is not implemented yet, maybe you can propose a PR :)');
}

/**
* {@inheritdoc}
*/
public function singleResultQuery($aSpecification)
{
throw new \LogicException('This method is not implemented yet, maybe you can propose a PR :)');
}

/**
* {@inheritdoc}
*/
Expand Down

0 comments on commit 5577279

Please sign in to comment.