1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 14:00:31 +02:00

[ticket/11998] Add phpBB abstraction for application and command.

PHPBB3-11998
This commit is contained in:
Andreas Fischer
2013-11-05 19:42:34 +01:00
parent 6bd2a89efc
commit 73ea5daf97
4 changed files with 40 additions and 9 deletions

View File

@@ -0,0 +1,14 @@
<?php
/**
*
* @package phpBB3
* @copyright (c) 2013 phpBB Group
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
*
*/
namespace phpbb\console\command;
abstract class command extends \Symfony\Component\Console\Command\Command
{
}