22 lines
No EOL
384 B
PHP
22 lines
No EOL
384 B
PHP
<?php
|
|
|
|
namespace Runtime\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(): string;
|
|
|
|
} |