.htaccess
5 months ago
Protocol.php
5 months ago
ProtocolListener.php
5 months ago
index.html
5 months ago
web.config
5 months ago
Protocol.php
22 lines
| 1 | <?php |
| 2 | /* |
| 3 | * |
| 4 | * JetBackup @ package |
| 5 | * Created By Idan Ben-Ezra |
| 6 | * |
| 7 | * Copyrights @ JetApps |
| 8 | * https://www.jetapps.com |
| 9 | * |
| 10 | **/ |
| 11 | namespace JetBackup\SocketAPI\Protocol; |
| 12 | |
| 13 | interface Protocol { |
| 14 | |
| 15 | /** |
| 16 | * @param ProtocolListener $listener |
| 17 | * |
| 18 | * @return void |
| 19 | */ |
| 20 | public function addListener(ProtocolListener $listener); |
| 21 | } |
| 22 |