Navigation Menu

Skip to content

Commit

Permalink
Merge branch '4.4'
Browse files Browse the repository at this point in the history
* 4.4:
  Remove unneeded phpdocs
  • Loading branch information
nicolas-grekas committed Aug 8, 2019
2 parents 9efd04b + 1e64c83 commit 7c4f8bc
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 10 deletions.
5 changes: 0 additions & 5 deletions Request.php
Expand Up @@ -744,11 +744,6 @@ public function hasSession()
return null !== $this->session;
}

/**
* Sets the Session.
*
* @param SessionInterface $session The Session
*/
public function setSession(SessionInterface $session)
{
$this->session = $session;
Expand Down
5 changes: 2 additions & 3 deletions Session/Storage/MockFileSessionStorage.php
Expand Up @@ -27,9 +27,8 @@ class MockFileSessionStorage extends MockArraySessionStorage
private $savePath;

/**
* @param string $savePath Path of directory to save session files
* @param string $name Session name
* @param MetadataBag $metaBag MetadataBag instance
* @param string $savePath Path of directory to save session files
* @param string $name Session name
*/
public function __construct(string $savePath = null, string $name = 'MOCKSESSID', MetadataBag $metaBag = null)
{
Expand Down
1 change: 0 additions & 1 deletion Session/Storage/NativeSessionStorage.php
Expand Up @@ -99,7 +99,6 @@ class NativeSessionStorage implements SessionStorageInterface
*
* @param array $options Session configuration options
* @param \SessionHandlerInterface|null $handler
* @param MetadataBag $metaBag MetadataBag
*/
public function __construct(array $options = [], $handler = null, MetadataBag $metaBag = null)
{
Expand Down
1 change: 0 additions & 1 deletion Session/Storage/PhpBridgeSessionStorage.php
Expand Up @@ -20,7 +20,6 @@ class PhpBridgeSessionStorage extends NativeSessionStorage
{
/**
* @param \SessionHandlerInterface|null $handler
* @param MetadataBag $metaBag MetadataBag
*/
public function __construct($handler = null, MetadataBag $metaBag = null)
{
Expand Down

0 comments on commit 7c4f8bc

Please sign in to comment.