Skip to content

Commit

Permalink
Fix code style
Browse files Browse the repository at this point in the history
  • Loading branch information
jeroennoten committed Nov 3, 2016
1 parent 1b9b8e5 commit 84a258e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Menu/ActiveChecker.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ protected function checkExact($url)

protected function checkSub($url)
{
return $this->checkPattern($url . '/*');
return $this->checkPattern($url.'/*');
}

protected function checkPattern($pattern)
Expand Down
4 changes: 3 additions & 1 deletion tests/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@

class TestCase extends PHPUnit_Framework_TestCase
{
private $dispatcher, $routeCollection;
private $dispatcher;

private $routeCollection;

protected function makeMenuBuilder($uri = 'http://example.com', GateContract $gate = null)
{
Expand Down

0 comments on commit 84a258e

Please sign in to comment.