forked from php-pm/php-pm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStatusCommand.php
41 lines (33 loc) · 1 KB
/
StatusCommand.php
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
<?php
namespace PHPPM\Commands;
use PHPPM\Client;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
class StatusCommand extends Command
{
use ConfigTrait;
/**
* {@inheritdoc}
*/
protected function configure()
{
parent::configure();
$this
->setName('status')
->addArgument('working-directory', null, 'working directory', './')
->setDescription('Status of all processes')
;
}
protected function execute(InputInterface $input, OutputInterface $output)
{
$config = $this->initializeConfig($input, $output, false);
$handler = new Client();
$handler->setSocketPath($config['socket-path']);
$handler->getStatus(function($status) use ($output) {
foreach ($status as $key => $value) {
$output->writeln(sprintf('%s: %s', $key, $value));
}
});
}
}