mirror of
https://github.com/skipperbent/simple-php-router.git
synced 2026-06-15 18:23:26 +03:00
22 lines
366 B
PHP
22 lines
366 B
PHP
<?php
|
|
|
|
namespace Pecee\Http\Input;
|
|
|
|
interface IInputItem
|
|
{
|
|
|
|
public function getIndex(): string;
|
|
|
|
public function setIndex(string $index): self;
|
|
|
|
public function getName(): ?string;
|
|
|
|
public function setName(string $name): self;
|
|
|
|
public function getValue();
|
|
|
|
public function setValue($value): self;
|
|
|
|
public function __toString(): string;
|
|
|
|
} |