1 | <?php |
||
13 | class SchemaCrawlerArguments |
||
14 | { |
||
15 | protected $user; |
||
16 | |||
17 | protected $password; |
||
18 | |||
19 | protected $infoLevel; |
||
20 | |||
21 | protected $command; |
||
22 | |||
23 | protected $url; |
||
24 | |||
25 | protected $outputFile; |
||
26 | |||
27 | protected $outputFormat; |
||
28 | |||
29 | protected $schemas; |
||
30 | |||
31 | /** |
||
32 | * SchemaCrawlerArguments constructor. |
||
33 | * @param string|null $outputFile |
||
34 | * @param string|null $outputFormat |
||
35 | * @param string|null $connection |
||
36 | * @param string|null $infoLevel |
||
37 | * @param string|null $command |
||
38 | */ |
||
39 | public function __construct( |
||
64 | |||
65 | /** |
||
66 | * @return array |
||
67 | */ |
||
68 | public function toArray(): array |
||
79 | |||
80 | /** |
||
81 | * @return string |
||
82 | */ |
||
83 | public function getOutputFile(): string |
||
87 | } |
||
88 |