mirror of
https://github.com/envoyr/php-froxlor-client.git
synced 2026-04-28 12:24:08 +00:00
Initial commit
This commit is contained in:
18
src/Customers.php
Normal file
18
src/Customers.php
Normal 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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user