| 1 | <?php |
||
| 5 | class Action |
||
| 6 | { |
||
| 7 | protected $name; |
||
| 8 | |||
| 9 | protected $arguments; |
||
| 10 | |||
| 11 | protected $html; |
||
| 12 | |||
| 13 | protected $previousHtml; |
||
| 14 | |||
| 15 | protected $path; |
||
| 16 | |||
| 17 | public function __construct(string $name, array $arguments, string $html, string $path) |
||
| 27 | |||
| 28 | public function getName() |
||
| 32 | |||
| 33 | public function getHtml() |
||
| 37 | |||
| 38 | public function setPreviousHtml(?string $html) |
||
| 42 | |||
| 43 | public function getPreviousHtml() |
||
| 47 | |||
| 48 | public function getArguments() |
||
| 52 | |||
| 53 | public function getPath() |
||
| 57 | } |
||
| 58 |