| 1 | <?php |
||
| 8 | class NotifySendBuilder extends BuilderAbstract |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * The notifier's path. |
||
| 12 | * |
||
| 13 | * @var string |
||
| 14 | */ |
||
| 15 | protected $path = 'notify-send'; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * Builds the notify-send command to be executed. |
||
| 19 | * |
||
| 20 | * @param array $options An array of options to use for building the command. |
||
| 21 | * @return string The fully-built command to execute. |
||
| 22 | */ |
||
| 23 | 3 | public function build($options) |
|
| 39 | } |
||
| 40 |