Skip to content

Commit

Permalink
Namespace issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Jean Claveau committed Nov 14, 2018
1 parent 8ef5927 commit 58c2fab
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/DeferredCallChain.php
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ public function __invoke($target)
*/
public function offsetSet($offset, $value)
{
throw new BadMethodCallException(
throw new \BadMethodCallException(
"not implemented"
);
}
Expand All @@ -121,7 +121,7 @@ public function offsetSet($offset, $value)
*/
public function offsetExists($offset)
{
throw new BadMethodCallException(
throw new \BadMethodCallException(
"not implemented"
);
}
Expand All @@ -131,7 +131,7 @@ public function offsetExists($offset)
*/
public function offsetUnset($offset)
{
throw new BadMethodCallException(
throw new \BadMethodCallException(
"not implemented"
);
}
Expand Down

0 comments on commit 58c2fab

Please sign in to comment.