| 1 | <?php |
||
| 21 | final class ResultReturning |
||
| 22 | { |
||
| 23 | /** @var mixed */ |
||
| 24 | private $returning; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * ResultReturning constructor. |
||
| 28 | * |
||
| 29 | * @param mixed $returning |
||
| 30 | */ |
||
| 31 | 16 | public function __construct($returning) |
|
| 32 | { |
||
| 33 | 16 | $this->returning = $returning; |
|
| 34 | 16 | } |
|
| 35 | |||
| 36 | /** |
||
| 37 | * @return mixed |
||
| 38 | */ |
||
| 39 | 2 | public function returning() |
|
| 43 | } |
||
| 44 |