mirror of
https://github.com/skipperbent/simple-php-router.git
synced 2026-07-10 20:12:12 +00:00
abe427ff59
- Optimised Input and Input-related features. - Removed InputCollection class. - Changed more foreach to for. - Updated documentation.
15 lines
181 B
PHP
15 lines
181 B
PHP
<?php
|
|
namespace Pecee\Http\Input;
|
|
|
|
interface IInputItem
|
|
{
|
|
|
|
public function getIndex();
|
|
|
|
public function getName();
|
|
|
|
public function getValue();
|
|
|
|
public function __toString();
|
|
|
|
} |