Development

- Better php7 support.
- Added easier way to debug router.
- Improvements and bugfixes.
- Updated documentation.
This commit is contained in:
Simon Sessingø
2018-03-26 23:43:27 +02:00
parent f23d569757
commit 085f98cf08
28 changed files with 847 additions and 233 deletions
+3 -3
View File
@@ -7,15 +7,15 @@ interface IInputItem
public function getIndex(): string;
public function setIndex($index): self;
public function setIndex(string $index): self;
public function getName(): string;
public function setName($name): self;
public function setName(string $name): self;
public function getValue(): string;
public function setValue($value): self;
public function setValue(string $value): self;
public function __toString();