1
|
|
|
<?php |
2
|
|
|
/* |
3
|
|
|
* This file is part of the KleijnWeb\SwaggerBundle package. |
4
|
|
|
* |
5
|
|
|
* For the full copyright and license information, please view the LICENSE |
6
|
|
|
* file that was distributed with this source code. |
7
|
|
|
*/ |
8
|
|
|
namespace KleijnWeb\SwaggerBundle\Dev\Command; |
9
|
|
|
|
10
|
|
|
use KleijnWeb\SwaggerBundle\Dev\Generator\ResourceGenerator; |
11
|
|
|
use KleijnWeb\SwaggerBundle\Document\DocumentRepository; |
12
|
|
|
use Symfony\Bundle\FrameworkBundle\Command\ContainerAwareCommand; |
13
|
|
|
use Symfony\Component\Console\Input\InputArgument; |
14
|
|
|
use Symfony\Component\Console\Input\InputOption; |
15
|
|
|
use Symfony\Component\Console\Input\InputInterface; |
16
|
|
|
use Symfony\Component\Console\Output\OutputInterface; |
17
|
|
|
use Symfony\Component\Finder\Finder; |
18
|
|
|
use Symfony\Component\HttpKernel\KernelInterface; |
19
|
|
|
|
20
|
|
|
/** |
21
|
|
|
* @author John Kleijn <[email protected]> |
22
|
|
|
*/ |
23
|
|
|
class GenerateResourceClassesCommand extends ContainerAwareCommand |
24
|
|
|
{ |
25
|
|
|
const NAME = 'swagger:generate:resources'; |
26
|
|
|
|
27
|
|
|
/** |
28
|
|
|
* @var ResourceGenerator |
29
|
|
|
*/ |
30
|
|
|
private $generator; |
31
|
|
|
|
32
|
|
|
/** |
33
|
|
|
* @var DocumentRepository |
34
|
|
|
*/ |
35
|
|
|
private $documentRepository; |
36
|
|
|
|
37
|
|
|
/** |
38
|
|
|
* @param DocumentRepository $documentRepository |
39
|
|
|
* @param ResourceGenerator $generator |
40
|
|
|
*/ |
41
|
|
|
public function __construct(DocumentRepository $documentRepository, ResourceGenerator $generator) |
42
|
|
|
{ |
43
|
|
|
parent::__construct(self::NAME); |
44
|
|
|
|
45
|
|
|
$this |
46
|
|
|
->setDescription('Generate DTO-like classes using the resource schema definitions in a swagger document') |
47
|
|
|
->setHelp('This is a development tool and will only work with require-dev dependencies included') |
48
|
|
|
->addArgument('file', InputArgument::REQUIRED, 'File path to the Swagger document') |
49
|
|
|
->addArgument('bundle', InputArgument::REQUIRED, 'Name of the bundle you want the classes in') |
50
|
|
|
->addOption( |
51
|
|
|
'namespace', |
52
|
|
|
null, |
53
|
|
|
InputOption::VALUE_REQUIRED, |
54
|
|
|
'Namespace of the classes to generate (relative to the bundle namespace)', |
55
|
|
|
'Model\Resources' |
56
|
|
|
); |
57
|
|
|
|
58
|
|
|
$this->documentRepository = $documentRepository; |
59
|
|
|
$this->generator = $generator; |
60
|
|
|
} |
61
|
|
|
|
62
|
|
|
|
63
|
|
|
/** |
64
|
|
|
* @SuppressWarnings(PHPMD.UnusedFormalParameter) |
65
|
|
|
* |
66
|
|
|
* @param InputInterface $input |
67
|
|
|
* @param OutputInterface $output |
68
|
|
|
* |
69
|
|
|
* @return void |
70
|
|
|
*/ |
71
|
|
|
protected function execute(InputInterface $input, OutputInterface $output) |
72
|
|
|
{ |
73
|
|
|
/** @var KernelInterface $kernel */ |
74
|
|
|
$kernel = $this->getContainer()->get('kernel'); |
75
|
|
|
$bundle = $kernel->getBundle($input->getArgument('bundle')); |
76
|
|
|
$document = $this->documentRepository->get($input->getArgument('file')); |
77
|
|
|
$this->generator->setSkeletonDirs(__DIR__ . '/../Resources/skeleton'); |
|
|
|
|
78
|
|
|
$this->generator->generate($bundle, $document, $input->getOption('namespace')); |
|
|
|
|
79
|
|
|
} |
80
|
|
|
} |
81
|
|
|
|
It seems like the type of the argument is not accepted by the function/method which you are calling.
In some cases, in particular if PHP’s automatic type-juggling kicks in this might be fine. In other cases, however this might be a bug.
We suggest to add an explicit type cast like in the following example: