Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
| Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
| 1 | <?php |
| 2 | |
| 3 | |
| 4 | namespace Qmp\Laravel\Tracker\Services\DeployData\Senders; |
| 5 | |
| 6 | |
| 7 | interface SenderInterface |
| 8 | { |
| 9 | /** |
| 10 | * @param array $data |
| 11 | * @return mixed |
| 12 | */ |
| 13 | public function handler(array $data); |
| 14 | } |