GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — master ( ef225f...f42931 )
by Hong
04:41
created

EventCapableAbstract::eventsListening()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 4
rs 10
cc 1
eloc 2
nc 1
nop 0
1
<?php
2
/**
3
 * Phossa Project
4
 *
5
 * PHP version 5.4
6
 *
7
 * @category  Library
8
 * @package   Phossa2\Event
9
 * @copyright Copyright (c) 2016 phossa.com
10
 * @license   http://mit-license.org/ MIT License
11
 * @link      http://www.phossa.com/
12
 */
13
/*# declare(strict_types=1); */
14
15
namespace Phossa2\Event;
16
17
use Phossa2\Shared\Base\ObjectAbstract;
18
use Phossa2\Event\Traits\ListenerTrait;
19
use Phossa2\Event\Traits\EventCapableTrait;
20
use Phossa2\Event\Interfaces\ListenerInterface;
21
use Phossa2\Event\Interfaces\EventCapableInterface;
22
23
/**
24
 * EventCapableAbstract
25
 *
26
 * Base class for event capable
27
 *
28
 * @package Phossa2\Event
29
 * @author  Hong Zhang <[email protected]>
30
 * @version 2.1.3
31
 * @since   2.0.0 added
32
 * @since   2.1.0 modified with new interfaces
33
 * @since   2.1.3 added ListenerTrait
34
 */
35
abstract class EventCapableAbstract extends ObjectAbstract implements EventCapableInterface, ListenerInterface
36
{
37
    use EventCapableTrait, ListenerTrait;
38
}
39