blob: 1a59141b43f2bba411f5931c5cf976d44f117de2 (
plain) (
blame)
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
<?php
/**
* UserFrosting (http://www.userfrosting.com)
*
* @link https://github.com/userfrosting/UserFrosting
* @license https://github.com/userfrosting/UserFrosting/blob/master/licenses/UserFrosting.md (MIT License)
*/
namespace UserFrosting\System\Bakery;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Formatter\OutputFormatterStyle;
use Symfony\Component\Console\Style\SymfonyStyle;
use Interop\Container\ContainerInterface;
/**
* Base class for UserFrosting Bakery CLI tools.
*
* @author Alex Weissman (https://alexanderweissman.com)
*/
abstract class BaseCommand extends Command
{
/**
* @var @Symfony\Component\Console\Style\SymfonyStyle
* See http://symfony.com/doc/current/console/style.html
*/
protected $io;
/**
* @var string Path to the project root folder
*/
protected $projectRoot;
/**
* @var ContainerInterface $ci The global container object, which holds all of the UserFrosting services.
*/
protected $ci;
/**
* {@inheritDoc}
*/
protected function initialize(InputInterface $input, OutputInterface $output)
{
$this->io = new SymfonyStyle($input, $output);
$this->projectRoot = \UserFrosting\ROOT_DIR;
}
/**
* Setup the global container object
*/
public function setContainer(ContainerInterface $ci)
{
$this->ci = $ci;
}
}
|