mirror of
https://github.com/skipperbent/simple-php-router.git
synced 2026-07-05 17:29:57 +00:00
085f98cf08
- Better php7 support. - Added easier way to debug router. - Improvements and bugfixes. - Updated documentation.
22 lines
372 B
PHP
22 lines
372 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(): string;
|
|
|
|
public function setValue(string $value): self;
|
|
|
|
public function __toString();
|
|
|
|
} |