mirror of
https://github.com/bitinflow/accounts.git
synced 2026-03-13 13:35:52 +00:00
12 lines
258 B
PHP
12 lines
258 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace GhostZero\BitinflowAccounts\ApiOperations;
|
|
|
|
use GhostZero\BitinflowAccounts\Helpers\Paginator;
|
|
|
|
trait Put
|
|
{
|
|
abstract public function put(string $path = '', array $parameters = [], Paginator $paginator = null);
|
|
} |