Compare commits

..

No commits in common. "c790adf611c743545b427f62ffda61ca32166ab3" and "0ac5e64c17514bb3b020efef7a11d76d093a8400" have entirely different histories.

3 changed files with 7 additions and 15 deletions

View File

@ -1,7 +1,7 @@
#!/usr/bin/env php
<?php
declare(strict_types=1);
declare(strict_types = 1);
use PmConverter\Processor;
@ -20,13 +20,8 @@ foreach ($paths as $path) {
is_null($file) && throw new RuntimeException('Unable to locate autoload.php file.');
$processor = new Processor($argv);
try {
$processor->convert();
} catch (InvalidArgumentException $e) {
fwrite(STDERR, sprintf('ERROR: %s%s', $e->getMessage(), PHP_EOL));
print(implode(PHP_EOL, $processor->usage()));
die(1);
(new Processor($argv))->convert();
} 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.1';
public const VERSION = '1.2.0';
/**
* @var string[] Paths to collection files
@ -167,9 +167,6 @@ 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];
}
@ -288,7 +285,7 @@ class Processor
/**
* @return string[]
*/
public function version(): array
protected function version(): array
{
return ["Postman collection converter v" . self::VERSION];
}
@ -296,7 +293,7 @@ class Processor
/**
* @return string[]
*/
public function copyright(): array
protected function copyright(): array
{
return [
'Anthony Axenov (c) ' . date('Y') . ", MIT license",
@ -307,7 +304,7 @@ class Processor
/**
* @return array
*/
public function usage(): array
protected function usage(): array
{
return array_merge($this->version(), [
'Usage:',