Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
1<?php
2namespace Apie\Common\Interfaces;
3
4use Apie\Common\Lists\UrlPrefixList;
5use Apie\Core\Enums\RequestMethod;
6use Apie\Core\ValueObjects\UrlRouteDefinition;
7
8/**
9 * Route definition interface. This is used internally used by Apie so it can be converted to whatever route library
10 * Apie is used in.
11 */
12interface HasRouteDefinition
13{
14    public function getMethod(): RequestMethod;
15    public function getUrl(): UrlRouteDefinition;
16    /**
17     * @return class-string<object>
18     */
19    public function getController(): string;
20    /**
21     * @return array<string, mixed>
22     */
23    public function getRouteAttributes(): array;
24    public function getOperationId(): string;
25    public function getUrlPrefixes(): UrlPrefixList;
26}