Total Complexity | 1 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
10 | class CanFulfillResponseBody implements ResponseBodyInterface |
||
11 | { |
||
12 | /** |
||
13 | * @var CanFulfillIntentResponse|null |
||
14 | */ |
||
15 | public $canFulfillIntent; |
||
16 | |||
17 | /** |
||
18 | * @param CanFulfillIntentResponse $canFulfillIntent |
||
19 | * |
||
20 | * @return CanFulfillResponseBody |
||
21 | */ |
||
22 | public static function create(CanFulfillIntentResponse $canFulfillIntent): self |
||
31 |