Code Coverage  | 
     ||||||||||
Classes and Traits  | 
      Functions and Methods  | 
      Lines  | 
     ||||||||
| Total |         | 
      100.00%  | 
      1 / 1  | 
              | 
      100.00%  | 
      3 / 3  | 
      CRAP |         | 
      100.00%  | 
      4 / 4  | 
     
| SessionOwnerEvent |         | 
      100.00%  | 
      1 / 1  | 
              | 
      100.00%  | 
      3 / 3  | 
      3 |         | 
      100.00%  | 
      4 / 4  | 
     
| __construct |         | 
      100.00%  | 
      1 / 1  | 
      1 |         | 
      100.00%  | 
      2 / 2  | 
     |||
| getName |         | 
      100.00%  | 
      1 / 1  | 
      1 |         | 
      100.00%  | 
      1 / 1  | 
     |||
| getSession |         | 
      100.00%  | 
      1 / 1  | 
      1 |         | 
      100.00%  | 
      1 / 1  | 
     |||
| <?php | |
| /** | |
| * OAuth 2.0 session owner event | |
| * | |
| * @package league/oauth2-server | |
| * @author Alex Bilbie <hello@alexbilbie.com> | |
| * @copyright Copyright (c) Alex Bilbie | |
| * @license http://mit-license.org/ | |
| * @link https://github.com/thephpleague/oauth2-server | |
| */ | |
| namespace League\OAuth2\Server\Event; | |
| use League\Event\AbstractEvent; | |
| use League\OAuth2\Server\Entity\SessionEntity; | |
| class SessionOwnerEvent extends AbstractEvent | |
| { | |
| /** | |
| * Session entity | |
| * | |
| * @var \League\OAuth2\Server\Entity\SessionEntity | |
| */ | |
| private $session; | |
| /** | |
| * Init the event with a session | |
| * | |
| * @param \League\OAuth2\Server\Entity\SessionEntity $session | |
| */ | |
| public function __construct(SessionEntity $session) | |
| { | |
| $this->session = $session; | |
| } | |
| /** | |
| * The name of the event | |
| * | |
| * @return string | |
| */ | |
| public function getName() | |
| { | |
| return 'session.owner'; | |
| } | |
| /** | |
| * Return session | |
| * | |
| * @return \League\OAuth2\Server\Entity\SessionEntity | |
| */ | |
| public function getSession() | |
| { | |
| return $this->session; | |
| } | |
| } |