1 | <?php |
||
2 | /** |
||
3 | * Operator cmds |
||
4 | * User: moyo |
||
5 | * Date: 27/10/2017 |
||
6 | * Time: 3:19 PM |
||
7 | */ |
||
8 | |||
9 | namespace Carno\Cluster\Managed; |
||
10 | |||
11 | use Carno\Promise\Promised; |
||
12 | |||
13 | trait Operator |
||
14 | { |
||
15 | /** |
||
16 | * @return Promised |
||
17 | */ |
||
18 | public function shutdown() : Promised |
||
19 | { |
||
20 | return $this->releasing(); |
||
0 ignored issues
–
show
Bug
introduced
by
![]() |
|||
21 | } |
||
22 | } |
||
23 |