/
jagepard
/
Rudra-Container
Обзор
Документация
Войти
/
jagepard
/
Rudra-Container
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/Interfaces/RequestInterface.php
25 строк
782 B
Jagepard
fix
02 июл 2026, 14:27
02 июл 2026, 14:27
86a3aae
Код
Авторство
О чём код?
<?php /** * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at https://mozilla.org/MPL/2.0/. * * @author Korotkov Danila (Jagepard) <jagepard@yandex.ru> * @license https://mozilla.org/MPL/2.0/ MPL-2.0 */ namespace Rudra\Container\Interfaces; use Psr\Container\ContainerInterface; interface RequestInterface { public function get(): ContainerInterface; public function post(): ContainerInterface; public function put(): ContainerInterface; public function patch(): ContainerInterface; public function delete(): ContainerInterface; public function server(): ContainerInterface; public function files(): ContainerInterface; }