RouterInterface.php

<?php

namespace Phad;

interface RouterInterface {


    /** called after phad instance is initialized */
    public function set_phad_object(\Phad $phad);
    /** called for each route found among your templates */
    public function add_route(string $pattern, array $methods);
    /** called to add the sitemap's route */
    public function add_file_route(string $pattern, string $file_path, array $methods);
}