mirror of
https://github.com/envoyr/php-froxlor-client.git
synced 2026-04-28 12:24:08 +00:00
18 lines
309 B
PHP
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);
|
|
}
|
|
} |