Fixed error when -o is missied

pull/4/head
Anthony Axenov 2023-08-13 10:50:52 +08:00
parent 40cc852328
commit c6094566b4
Signed by: anthony
GPG Key ID: EA9EC32FF7CCD4EC
3 changed files with 15 additions and 7 deletions

View File

@ -1,7 +1,7 @@
#!/usr/bin/env php
<?php
declare(strict_types = 1);
declare(strict_types=1);
use PmConverter\Processor;
@ -20,8 +20,13 @@ foreach ($paths as $path) {
is_null($file) && throw new RuntimeException('Unable to locate autoload.php file.');
$processor = new Processor($argv);
try {
(new Processor($argv))->convert();
$processor->convert();
} catch (InvalidArgumentException $e) {
fwrite(STDERR, sprintf('ERROR: %s%s', $e->getMessage(), PHP_EOL));
print(implode(PHP_EOL, $processor->usage()));
die(1);
} catch (Exception $e) {
fwrite(STDERR, sprintf('ERROR: %s%s', $e->getMessage(), PHP_EOL));
die(1);

View File

@ -1,6 +1,6 @@
<?php
declare(strict_types = 1);
declare(strict_types=1);
namespace PmConverter;

View File

@ -22,7 +22,7 @@ class Processor
/**
* Converter version
*/
public const VERSION = '1.2.0';
public const VERSION = '1.2.1';
/**
* @var string[] Paths to collection files
@ -167,6 +167,9 @@ class Processor
if (empty($this->collectionPaths)) {
throw new InvalidArgumentException('there are no collections to convert');
}
if (empty($this->outputPath)) {
throw new InvalidArgumentException('-o is required');
}
if (empty($this->formats)) {
$this->formats = [ConvertFormat::Http->name => ConvertFormat::Http];
}
@ -285,7 +288,7 @@ class Processor
/**
* @return string[]
*/
protected function version(): array
public function version(): array
{
return ["Postman collection converter v" . self::VERSION];
}
@ -293,7 +296,7 @@ class Processor
/**
* @return string[]
*/
protected function copyright(): array
public function copyright(): array
{
return [
'Anthony Axenov (c) ' . date('Y') . ", MIT license",
@ -304,7 +307,7 @@ class Processor
/**
* @return array
*/
protected function usage(): array
public function usage(): array
{
return array_merge($this->version(), [
'Usage:',