CreateChatSessionUseCaseInterface.php

Code Hygiene Score: 100

Keine Issues gefunden.

Klassen 1

Funktionen 1

Verwendet von 4

Code

<?php

declare(strict_types=1);

namespace UseCases\Chat;

// @responsibility: Interface for creating new chat sessions

interface CreateChatSessionUseCaseInterface
{
    /**
     * Creates a new chat session with default settings.
     *
     * @return string UUID of the created session
     */
    public function createSession(): string;
}
← Übersicht Graph