mirror of
https://github.com/flarum/core.git
synced 2025-10-11 15:04:25 +02:00
24 lines
466 B
PHP
24 lines
466 B
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of Flarum.
|
|
*
|
|
* For detailed copyright and license information, please view the
|
|
* LICENSE file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Flarum\Foundation;
|
|
|
|
interface AppInterface
|
|
{
|
|
/**
|
|
* @return \Psr\Http\Server\RequestHandlerInterface
|
|
*/
|
|
public function getRequestHandler();
|
|
|
|
/**
|
|
* @return \Symfony\Component\Console\Command\Command[]
|
|
*/
|
|
public function getConsoleCommands();
|
|
}
|