core23/FacebookBundle

View on GitHub
src/Event/AuthSuccessEvent.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

declare(strict_types=1);

/*
 * (c) Christian Gripp <mail@core23.de>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace Core23\FacebookBundle\Event;

use Core23\FacebookBundle\Session\SessionInterface;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Contracts\EventDispatcher\Event;

final class AuthSuccessEvent extends Event
{
    /**
     * @var SessionInterface
     */
    private $session;

    /**
     * @var Response|null
     */
    private $response;

    public function __construct(SessionInterface $session)
    {
        $this->session = $session;
    }

    public function getSession(): SessionInterface
    {
        return $this->session;
    }

    public function getResponse(): ?Response
    {
        return $this->response;
    }

    public function setResponse(?Response $response): void
    {
        $this->response = $response;
    }

    public function getUsername(): string
    {
        return $this->session->getName();
    }
}