Skip to content
This repository has been archived by the owner on Nov 1, 2022. It is now read-only.

Commit

Permalink
Forgot to remove a '= null' from the implementation of the has reposi…
Browse files Browse the repository at this point in the history
…tory function.
  • Loading branch information
noggan committed Apr 25, 2016
1 parent 55698f6 commit 0e7d3c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Roave/NonceUtility/Repository/NonceRepository.php
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ public function getUnassociated($nonce, $namespace = 'default')
/**
* {@Inheritdoc}
*/
public function has(NonceOwnerInterface $owner = null, $nonce, $namespace = 'default')
public function has(NonceOwnerInterface $owner, $nonce, $namespace = 'default')
{
return $this->get($owner, $nonce, $namespace) !== null;
}
Expand Down

0 comments on commit 0e7d3c8

Please sign in to comment.