1 | <?php |
||
18 | abstract class AbstractResponse extends BaseAbstractResponse |
||
19 | { |
||
20 | use Concerns\ResponseProperties; |
||
21 | |||
22 | /** |
||
23 | * {@inheritdoc} |
||
24 | */ |
||
25 | public function isSuccessful(): bool |
||
29 | |||
30 | /** |
||
31 | * {@inheritdoc} |
||
32 | */ |
||
33 | public function isCancelled(): bool |
||
37 | |||
38 | /** |
||
39 | * {@inheritdoc} |
||
40 | */ |
||
41 | public function getMessage(): ?string |
||
45 | } |
||
46 |