aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/console/command/command.php
blob: 638c989da2253d2da3cd45603fbdebc206946777 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?php
/**
*
* This file is part of the phpBB Forum Software package.
*
* @copyright (c) phpBB Limited <https://www.phpbb.com>
* @license GNU General Public License, version 2 (GPL-2.0)
*
* For full copyright and license information, please see
* the docs/CREDITS.txt file.
*
*/

namespace phpbb\console\command;

abstract class command extends \Symfony\Component\Console\Command\Command
{
	/** @var \phpbb\user */
	protected $user;

	/**
	* Constructor
	*
	* @param \phpbb\user $user User instance (mostly for translation)
	*/
	public function __construct(\phpbb\user $user)
	{
		$this->user = $user;
		parent::__construct();
	}
}
>space:mode:
authorThierry Vignaud <tvignaud@mandriva.org>2005-04-21 15:25:29 +0000
committerThierry Vignaud <tvignaud@mandriva.org>2005-04-21 15:25:29 +0000
commitb6e6dfe3bb5ca1480b60d1bd6710dbf2298d00ab (patch)
tree552c5c64693a3b846fe63ff00fe767a355b60462
parenta2c392a9ab83bb9031fb11f99f0101f1f2d9f140 (diff)
downloaddrakx-b6e6dfe3bb5ca1480b60d1bd6710dbf2298d00ab.tar
drakx-b6e6dfe3bb5ca1480b60d1bd6710dbf2298d00ab.tar.gz
drakx-b6e6dfe3bb5ca1480b60d1bd6710dbf2298d00ab.tar.bz2
drakx-b6e6dfe3bb5ca1480b60d1bd6710dbf2298d00ab.tar.xz
drakx-b6e6dfe3bb5ca1480b60d1bd6710dbf2298d00ab.zip
switch from MandrakeSoft to Mandriva
Diffstat