Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
thijskh committed Nov 16, 2018
1 parent 49c1830 commit 39ede7d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/SAML2/Compat/MockContainer.php
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ public function debugMessage($message, $type)
* @param array $data
* @return void
*/
public function redirect($url, array $data = [])
public function redirect($url, $data = [])
{
$this->redirectUrl = $url;
$this->redirectData = $data;
Expand All @@ -92,7 +92,7 @@ public function redirect($url, array $data = [])
* @param array $data
* @return void
*/
public function postRedirect($url, array $data = [])
public function postRedirect($url, $data = [])
{
$this->postRedirectUrl = $url;
$this->postRedirectData = $data;
Expand Down

0 comments on commit 39ede7d

Please sign in to comment.