/**
* Constructor for Dispatcher
*
* @param CMSApplicationInterface $app The application instance
* @param Input $input The input instance
*
* @since 4.0.0
*/
public function __construct(CMSApplicationInterface $app, Input $input)
{
$this->app = $app;
$this->input = $input;
}