Some message optimisation, added Echomail processing

This commit is contained in:
Deon George
2021-07-31 00:35:52 +10:00
parent 6f26bc4c71
commit d937547599
15 changed files with 476 additions and 134 deletions

11
app/Interfaces/Packet.php Normal file
View File

@@ -0,0 +1,11 @@
<?php
namespace App\Interfaces;
use App\Classes\FTN\Message;
use App\Models\Address;
interface Packet
{
public function Packet(Address $ao): Message;
}