Files
php-froxlor-client/src/Customers.php
2022-01-18 17:14:29 +01:00

18 lines
309 B
PHP

<?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);
}
}