@@ -2,9 +2,9 @@ |
||
| 2 | 2 | |
| 3 | 3 | namespace Nymfonya\Component\Http\Interfaces; |
| 4 | 4 | |
| 5 | -use Nymfonya\Component\Http\Response; |
|
| 6 | 5 | use Nymfonya\Component\Http\Headers; |
| 7 | 6 | use Nymfonya\Component\Http\Interfaces\IStatus; |
| 7 | +use Nymfonya\Component\Http\Response; |
|
| 8 | 8 | |
| 9 | 9 | interface IResponse extends IStatus |
| 10 | 10 | { |
@@ -2,8 +2,8 @@ |
||
| 2 | 2 | |
| 3 | 3 | namespace Nymfonya\Component\Http; |
| 4 | 4 | |
| 5 | -use Nymfonya\Component\Http\Response; |
|
| 6 | 5 | use Nymfonya\Component\Http\Headers; |
| 6 | +use Nymfonya\Component\Http\Response; |
|
| 7 | 7 | |
| 8 | 8 | class Kernel |
| 9 | 9 | { |
@@ -2,8 +2,8 @@ |
||
| 2 | 2 | |
| 3 | 3 | namespace Nymfonya\Component\Http; |
| 4 | 4 | |
| 5 | -use Nymfonya\Component\Http\Interfaces\IRequest; |
|
| 6 | 5 | use Nymfonya\Component\Http\Interfaces\IHeaders; |
| 6 | +use Nymfonya\Component\Http\Interfaces\IRequest; |
|
| 7 | 7 | use Nymfonya\Component\Http\Session; |
| 8 | 8 | |
| 9 | 9 | class Request extends Session implements IRequest |
@@ -2,14 +2,14 @@ |
||
| 2 | 2 | |
| 3 | 3 | namespace Nymfonya\Component\Http\Reuse; |
| 4 | 4 | |
| 5 | -use Nymfonya\Component\Http\Kernel; |
|
| 5 | +use Monolog\Logger; |
|
| 6 | 6 | use Nymfonya\Component\Config; |
| 7 | 7 | use Nymfonya\Component\Container; |
| 8 | +use Nymfonya\Component\Http\Kernel; |
|
| 9 | +use Nymfonya\Component\Http\Middleware; |
|
| 8 | 10 | use Nymfonya\Component\Http\Request; |
| 9 | 11 | use Nymfonya\Component\Http\Response; |
| 10 | 12 | use Nymfonya\Component\Http\Router; |
| 11 | -use Nymfonya\Component\Http\Middleware; |
|
| 12 | -use Monolog\Logger; |
|
| 13 | 13 | use \ReflectionClass; |
| 14 | 14 | |
| 15 | 15 | trait TKernel |
@@ -2,10 +2,10 @@ |
||
| 2 | 2 | |
| 3 | 3 | namespace Nymfonya\Component\Http; |
| 4 | 4 | |
| 5 | -use Nymfonya\Component\Http\Interfaces\IRoutes; |
|
| 6 | -use Nymfonya\Component\Http\Interfaces\IRoute; |
|
| 7 | 5 | use Nymfonya\Component\Http\Interfaces\IRequest; |
| 6 | +use Nymfonya\Component\Http\Interfaces\IRoute; |
|
| 8 | 7 | use Nymfonya\Component\Http\Interfaces\IRouter; |
| 8 | +use Nymfonya\Component\Http\Interfaces\IRoutes; |
|
| 9 | 9 | |
| 10 | 10 | class Router implements IRouter |
| 11 | 11 | { |