Issues (1019)

src/Swoole/Timer/CronJobInterface.php (7 issues)

1
<?php
2
0 ignored issues
show
Missing file doc comment
Loading history...
3
namespace Hhxsv5\LaravelS\Swoole\Timer;
4
5
interface CronJobInterface
0 ignored issues
show
Missing doc comment for interface CronJobInterface
Loading history...
6
{
7
    public function __construct();
0 ignored issues
show
Missing doc comment for function __construct()
Loading history...
8
9
    /**
0 ignored issues
show
Missing short description in doc comment
Loading history...
10
     * @return int $interval ms
11
     */
12
    public function interval();
13
14
    /**
0 ignored issues
show
Missing short description in doc comment
Loading history...
15
     * @return bool $isImmediate
16
     */
17
    public function isImmediate();
18
19
    public function run();
0 ignored issues
show
Missing doc comment for function run()
Loading history...
20
21
    public function stop();
0 ignored issues
show
Missing doc comment for function stop()
Loading history...
22
}