@@ -13,5 +13,5 @@ |
||
13 | 13 | interface IParser |
14 | 14 | { |
15 | 15 | |
16 | - public function parse($file, Array $dirs = array()); |
|
16 | + public function parse($file, array $dirs = array()); |
|
17 | 17 | } |
@@ -53,7 +53,7 @@ discard block |
||
53 | 53 | */ |
54 | 54 | protected $common_dirs = array(); |
55 | 55 | |
56 | - public function __construct(Array $dirs = array()) |
|
56 | + public function __construct(array $dirs = array()) |
|
57 | 57 | { |
58 | 58 | foreach ($dirs as $dir) { |
59 | 59 | $this->common_dirs[] = realpath($dir); |
@@ -62,14 +62,14 @@ discard block |
||
62 | 62 | $this->Preprocessor = new Preprocessor(self::COMMENT_TAG); |
63 | 63 | } |
64 | 64 | |
65 | - public function addDirs(Array $dirs) |
|
65 | + public function addDirs(array $dirs) |
|
66 | 66 | { |
67 | 67 | foreach ($dirs as $dir) { |
68 | 68 | $this->common_dirs[] = realpath($dir); |
69 | 69 | } |
70 | 70 | } |
71 | 71 | |
72 | - public function parse($file, Array $dirs = array(), Array $defines = array()) |
|
72 | + public function parse($file, array $dirs = array(), array $defines = array()) |
|
73 | 73 | { |
74 | 74 | $this->dirs = $this->common_dirs; |
75 | 75 | foreach ($dirs as $dir) { |
@@ -197,7 +197,7 @@ discard block |
||
197 | 197 | * Add to the queue any classes based on the commands. |
198 | 198 | * @param \SwaggerGen\Statement[] $Statements |
199 | 199 | */ |
200 | - public function queueClassesFromComments(Array $Statements) |
|
200 | + public function queueClassesFromComments(array $Statements) |
|
201 | 201 | { |
202 | 202 | foreach ($Statements as $Statement) { |
203 | 203 | if ($Statement->command === 'uses' || $Statement->command === 'see') { |
@@ -211,7 +211,7 @@ discard block |
||
211 | 211 | } |
212 | 212 | } |
213 | 213 | |
214 | - private function parseFiles(Array $files, Array $defines = array()) |
|
214 | + private function parseFiles(array $files, array $defines = array()) |
|
215 | 215 | { |
216 | 216 | $this->files_queued = $files; |
217 | 217 | |
@@ -326,7 +326,7 @@ discard block |
||
326 | 326 | * @param \SwaggerGen\Statement[] $Statements |
327 | 327 | * @return \SwaggerGen\Statement[] |
328 | 328 | */ |
329 | - private function expand(Array $Statements, Entity\ParserClass $Self = null) |
|
329 | + private function expand(array $Statements, Entity\ParserClass $Self = null) |
|
330 | 330 | { |
331 | 331 | $output = array(); |
332 | 332 |
@@ -26,7 +26,7 @@ |
||
26 | 26 | $this->defines = array(); |
27 | 27 | } |
28 | 28 | |
29 | - public function addDefines(Array $defines) |
|
29 | + public function addDefines(array $defines) |
|
30 | 30 | { |
31 | 31 | $this->defines = array_merge($this->defines, $defines); |
32 | 32 | } |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | * |
34 | 34 | * @param string[] $dirs |
35 | 35 | */ |
36 | - public function __construct(Array $dirs = array()) |
|
36 | + public function __construct(array $dirs = array()) |
|
37 | 37 | { |
38 | 38 | foreach ($dirs as $dir) { |
39 | 39 | $this->common_dirs[] = realpath($dir); |
@@ -47,7 +47,7 @@ discard block |
||
47 | 47 | * |
48 | 48 | * @param string[] $dirs |
49 | 49 | */ |
50 | - public function addDirs(Array $dirs) |
|
50 | + public function addDirs(array $dirs) |
|
51 | 51 | { |
52 | 52 | foreach ($dirs as $dir) { |
53 | 53 | $this->common_dirs[] = realpath($dir); |
@@ -62,7 +62,7 @@ discard block |
||
62 | 62 | * @param string[] $defines |
63 | 63 | * @return \SwaggerGen\Statement[] |
64 | 64 | */ |
65 | - public function parse($file, Array $dirs = array(), Array $defines = array()) |
|
65 | + public function parse($file, array $dirs = array(), array $defines = array()) |
|
66 | 66 | { |
67 | 67 | return $this->parseText(file_get_contents(realpath($file)), $dirs); |
68 | 68 | } |
@@ -75,7 +75,7 @@ discard block |
||
75 | 75 | * @param string[] $defines |
76 | 76 | * @return \SwaggerGen\Statement |
77 | 77 | */ |
78 | - public function parseText($text, Array $dirs = array(), Array $defines = array()) |
|
78 | + public function parseText($text, array $dirs = array(), array $defines = array()) |
|
79 | 79 | { |
80 | 80 | $this->dirs = $this->common_dirs; |
81 | 81 | foreach ($dirs as $dir) { |
@@ -65,7 +65,7 @@ |
||
65 | 65 | $format = strtolower($match[1]); |
66 | 66 | if (isset(self::$classTypes[$format])) { |
67 | 67 | $type = self::$classTypes[$format]; |
68 | - $class = "SwaggerGen\\Swagger\\Type\\{$type}Type"; |
|
68 | + $class = "SwaggerGen\\Swagger\\Type\\{$type}type"; |
|
69 | 69 | $this->Type = new $class($this, $definition); |
70 | 70 | } else { |
71 | 71 | throw new \SwaggerGen\Exception("Property format not recognized: '{$format}'"); |
@@ -165,7 +165,7 @@ |
||
165 | 165 | $format = strtolower($match[1]); |
166 | 166 | if (isset(self::$classTypes[$format])) { |
167 | 167 | $type = self::$classTypes[$format]; |
168 | - $typeClass = "SwaggerGen\\Swagger\\Type\\{$type}Type"; |
|
168 | + $typeClass = "SwaggerGen\\Swagger\\Type\\{$type}type"; |
|
169 | 169 | return new $typeClass($this, $items); |
170 | 170 | } |
171 | 171 |
@@ -65,7 +65,7 @@ |
||
65 | 65 | $format = strtolower($match[1]); |
66 | 66 | if (isset(self::$classTypes[$format])) { |
67 | 67 | $type = self::$classTypes[$format]; |
68 | - $class = "SwaggerGen\\Swagger\\Type\\{$type}Type"; |
|
68 | + $class = "SwaggerGen\\Swagger\\Type\\{$type}type"; |
|
69 | 69 | $this->Type = new $class($this, $definition); |
70 | 70 | } else { |
71 | 71 | throw new \SwaggerGen\Exception("Property format not recognized: '{$format}'"); |
@@ -65,7 +65,7 @@ |
||
65 | 65 | $format = strtolower($match[1]); |
66 | 66 | if (isset(self::$classTypes[$format])) { |
67 | 67 | $type = self::$classTypes[$format]; |
68 | - $class = "SwaggerGen\\Swagger\\Type\\{$type}Type"; |
|
68 | + $class = "SwaggerGen\\Swagger\\Type\\{$type}type"; |
|
69 | 69 | $this->Type = new $class($this, $definition); |
70 | 70 | } else { |
71 | 71 | throw new \SwaggerGen\Exception("Property format not recognized: '{$format}'"); |