| 1 | <?php |
||
| 5 | class Action |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * @var string |
||
| 9 | */ |
||
| 10 | protected $url; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * @var string |
||
| 14 | */ |
||
| 15 | protected $content; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @var string |
||
| 19 | */ |
||
| 20 | protected $method; |
||
| 21 | |||
| 22 | public function __construct(string $url, string $content, string $method = 'GET') |
||
| 30 | |||
| 31 | public function render() |
||
| 39 | } |