mirror of
https://github.com/bitinflow/accounts.git
synced 2026-03-14 14:05:52 +00:00
17 lines
358 B
PHP
17 lines
358 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace GhostZero\BitinflowAccounts\ApiOperations;
|
|
|
|
use GhostZero\BitinflowAccounts\Helpers\Paginator;
|
|
use GhostZero\BitinflowAccounts\Result;
|
|
|
|
/**
|
|
* @author René Preuß <rene@preuss.io>
|
|
*/
|
|
trait Post
|
|
{
|
|
|
|
abstract public function post(string $path = '', array $parameters = [], Paginator $paginator = null): Result;
|
|
} |