/
githubmirror
/
ydb-php-examples
Обзор
Документация
Войти
/
githubmirror
/
ydb-php-examples
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
app/Commands/MakeDirectoryCommand.php
56 строк
1 KB
Alexei Shabalin
initial commit
16 апр 2021, 10:37
16 апр 2021, 10:37
01ac227
Код
Авторство
О чём код?
<?php namespace App\Commands; use App\AppService; use Symfony\Component\Console\Command\Command; use Symfony\Component\Console\Input\InputArgument; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; class MakeDirectoryCommand extends Command { /** * @var string */ protected static $defaultName = 'mkdir'; /** * @var AppService */ protected $appService; public function __construct() { $this->appService = new AppService; parent::__construct(); } protected function configure() { $this->setDescription('Make a directory.'); $this->addArgument('dirname', InputArgument::REQUIRED, 'The directory name.'); } /** * @param InputInterface $input * @param OutputInterface $output * @return int */ protected function execute(InputInterface $input, OutputInterface $output) { $dirname = $input->getArgument('dirname'); $ydb = $this->appService->initYdb(); $scheme = $ydb->scheme(); $result = $scheme->makeDirectory($dirname); $output->writeln(json_encode($result, 480)); return Command::SUCCESS; } }