mirror of
https://github.com/skipperbent/simple-php-router.git
synced 2026-06-17 00:37:52 +00:00
1c515119b4
- Ensure that request-method is always lowercase. - Fixed spaces instead of tabs to comply with PSR-2.
15 lines
193 B
PHP
15 lines
193 B
PHP
<?php
|
|
namespace Pecee\Http\Input;
|
|
|
|
interface IInputItem
|
|
{
|
|
|
|
public function getIndex();
|
|
|
|
public function getName();
|
|
|
|
public function getValue();
|
|
|
|
public function __toString();
|
|
|
|
} |