Skip to content

Instantly share code, notes, and snippets.

@john555
Created June 28, 2018 07:45
Show Gist options
  • Save john555/757d33041f9199238bd99a936e826450 to your computer and use it in GitHub Desktop.
Save john555/757d33041f9199238bd99a936e826450 to your computer and use it in GitHub Desktop.
<?php
class Router
{
private $request;
function __construct(IRequest $request)
{
$this->request = $request;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment