Files
simple-php-router/src/Pecee/Http/Input/IInputItem.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;
}