Просмотр файла libarea-0.9/app/Bootstrap/Services/RequestIdService.php

Размер файла: 489B
<?php

namespace App\Bootstrap\Services;

use Hleb\Static\System;

/**
 * Demo class for creating a service.
 * The service has a method to get the request id.
 *
 * Демонстрационный класс для создания сервиса.
 * Сервис имеет метод для получения текущего Request ID.
 */
class RequestIdService implements RequestIdInterface
{
    public function get(): string
    {
        return System::getRequestId();
    }
}