/
Alexsey-VR
/
php-project-9
Обзор
Документация
Войти
/
Alexsey-VR
/
php-project-9
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Interfaces/UrlRepositoryInterface.php
20 строк
472 B
Alexsey-VR
updated url repository
28 апр 2026, 06:11
28 апр 2026, 06:11
1d181de
Код
Авторство
О чём код?
<?php namespace Analyzer\Interfaces; use Analyzer\Interfaces\UrlInterface; use PDO; interface UrlRepositoryInterface { public function save(UrlInterface $url): void; public function create(UrlInterface $url): void; public function update(UrlInterface $url): void; public function find(int $id): ?UrlInterface; public function delete(int $id): void; /** * @return array<int,UrlInterface> */ public function getEntities(): array; }