antonmarin/amocrm

View on GitHub
src/Account/AccountsRepositoryInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace amocrm\Account;

/**
 * Репозиторий аккаунтов
 *
 * @link https://developers.amocrm.ru/rest_api/#account
 */
interface AccountsRepositoryInterface
{
    /**
     * Получить данные по аккаунту
     *
     * @see https://developers.amocrm.ru/rest_api/accounts_current.php
     * @return Account
     */
    public function getCurrent();
}