Source of file Matcher.php
Size: 0,648 Bytes - Last Modified: 2016-08-17T22:27:15+00:00
../src/Aviat/Director/Matcher.php
1234567891011121314151617181920212223242526272829303132333435363738394041 | <?php /** * Director * * A general purpose url router and generator * * @package Director * @author Timothy J. Warren * @copyright Copyright (c) 2016 * @link https://git.timshomepage.net/timw4mail/director * @license MIT */ namespace Aviat\Director; use Psr\Http\Message\ServerRequestInterface; use Psr\Log\LoggerInterface; /** * Class to determine the current route */ class Matcher { /** * Config object * * @var RouteConfig */ protected $config; /** * Constructor * * @param RouteConfig $config */ public function __constructor(RouteConfig $config) { $this->config = $config; } } |