1
0
Fork 0

Session - Remove unneeded cookie parameter

This commit is contained in:
Philipp Holzer 2019-12-29 00:03:58 +01:00
commit 673c4537e4
No known key found for this signature in database
GPG key ID: D8365C3D36B77D90
4 changed files with 5 additions and 23 deletions

View file

@ -3,21 +3,11 @@
namespace Friendica\Core\Session;
use Friendica\Model\User\Cookie;
/**
* Contains the base methods for $_SESSION interaction
*/
class AbstractSession
{
/** @var Cookie */
protected $cookie;
public function __construct( Cookie $cookie)
{
$this->cookie = $cookie;
}
/**
* {@inheritDoc}
*/