Initial commit

This commit is contained in:
2022-01-18 17:14:29 +01:00
commit 320a153918
18 changed files with 622 additions and 0 deletions

18
src/Customers.php Normal file
View File

@@ -0,0 +1,18 @@
<?php
namespace Envoyr\Froxlor;
class Customers
{
public Server $server;
public function __construct(Server $server)
{
$this->server = $server;
}
public function create(array $attributes): array
{
return $this->server->request('Customers.add', $attributes);
}
}