Skip to content
This repository has been archived by the owner on Jul 4, 2018. It is now read-only.

Commit

Permalink
fixed visibility
Browse files Browse the repository at this point in the history
  • Loading branch information
fabpot committed Apr 29, 2014
1 parent 38c84ad commit a4c7c51
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Silex/EventListener/SessionListener.php
Expand Up @@ -28,7 +28,7 @@ public function __construct(Application $app)
$this->app = $app;
}

public function getSession()
protected function getSession()
{
if (!isset($this->app['session'])) {
return null;
Expand Down
2 changes: 1 addition & 1 deletion src/Silex/EventListener/TestSessionListener.php
Expand Up @@ -28,7 +28,7 @@ public function __construct(Application $app)
$this->app = $app;
}

public function getSession()
protected function getSession()
{
if (!isset($this->app['session'])) {
return null;
Expand Down

0 comments on commit a4c7c51

Please sign in to comment.