leyhmann/docdochelpers

Simple helper for use docdoc.ru partner API

v2.1.4 2020-06-12 15:24 UTC

This package is auto-updated.

Last update: 2025-07-22 01:26:54 UTC


README

Official API Documentation Version 1.0.12

Install

Install by composer.

composer require leyhmann/docdochelpers

Example

use Leyhmann\DocDoc\Services\DoctorsService;

$client = new Client(DOCDOC_LOGIN, DOCDOC_PASSWORD);
$doctorsService = new DoctorsService($client);
$doctors = $doctorsService->all($cityId : int, $count: int|null, $start: int|null);

foreach($doctors as $doctor) {
    // do something
}

See Services folder for make request