| 1 | <?php |
||
| 18 | class PostServiceActionArgs extends EventArgs |
||
| 19 | { |
||
| 20 | /** |
||
| 21 | * @var Service $service |
||
| 22 | */ |
||
| 23 | private $service; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @param Service $service |
||
| 27 | */ |
||
| 28 | 25 | public function __construct(Service $service) |
|
| 32 | |||
| 33 | /** |
||
| 34 | * Get the created service object |
||
| 35 | * @return Service |
||
| 36 | */ |
||
| 37 | 2 | public function getService() |
|
| 41 | } |
||
| 42 |