Completed
Push — master ( f172d4...76e139 )
by devosc
02:14
created

src/Event/Event.php (1 issue)

Severity

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
/**
3
 *
4
 */
5
6
namespace Mvc5\Event;
7
8
interface Event
9
{
10
    /**
11
     * @return string
12
     */
13
    function event();
0 ignored issues
show
Using PHP4-style constructors that are named like the class is not recommend; better use the more explicit __construct method.
Loading history...
14
15
    /**
16
     * @return bool|true
17
     */
18
    function stop();
19
20
    /**
21
     * @return bool
22
     */
23
    function stopped();
24
}
25