mirror of
https://github.com/bitinflow/accounts.git
synced 2026-03-14 05:55:51 +00:00
Change directory structure Add bitinflow-accounts socialite provider Improve docs generation
16 lines
308 B
PHP
16 lines
308 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace GhostZero\BitinflowAccounts\ApiOperations;
|
|
|
|
use GhostZero\BitinflowAccounts\Helpers\Paginator;
|
|
|
|
/**
|
|
* @author René Preuß <rene@preuss.io>
|
|
*/
|
|
trait Put
|
|
{
|
|
|
|
abstract public function put(string $path = '', array $parameters = [], Paginator $paginator = null);
|
|
} |