@@ -63,6 +63,9 @@ discard block |
||
| 63 | 63 | $this->dir = getcwd(); |
| 64 | 64 | } |
| 65 | 65 | |
| 66 | + /** |
|
| 67 | + * @param string $errorType |
|
| 68 | + */ |
|
| 66 | 69 | protected function errorCondtion($msg, $errorType) |
| 67 | 70 | { |
| 68 | 71 | $this->errorConditions[$msg] = $errorType; |
@@ -110,7 +113,7 @@ discard block |
||
| 110 | 113 | } |
| 111 | 114 | |
| 112 | 115 | /** |
| 113 | - * @param array $argv |
|
| 116 | + * @param string[] $argv |
|
| 114 | 117 | * @param null|string $appName |
| 115 | 118 | * @param null|string $appVersion |
| 116 | 119 | * @param null|\Symfony\Component\Console\Output\OutputInterface $output |
@@ -133,7 +136,7 @@ discard block |
||
| 133 | 136 | * @param null|\Symfony\Component\Console\Input\InputInterface $input |
| 134 | 137 | * @param null|\Symfony\Component\Console\Output\OutputInterface $output |
| 135 | 138 | * @param null|\Robo\Application $app |
| 136 | - * @param array[] $commandFiles |
|
| 139 | + * @param null|string $commandFiles |
|
| 137 | 140 | * @param null|ClassLoader $classLoader |
| 138 | 141 | * |
| 139 | 142 | * @return int |
@@ -91,8 +91,8 @@ |
||
| 91 | 91 | { |
| 92 | 92 | $finder = new Finder(); |
| 93 | 93 | $finder->files() |
| 94 | - ->name($pattern) |
|
| 95 | - ->in($directories); |
|
| 94 | + ->name($pattern) |
|
| 95 | + ->in($directories); |
|
| 96 | 96 | |
| 97 | 97 | return $finder; |
| 98 | 98 | } |
@@ -67,6 +67,10 @@ |
||
| 67 | 67 | ]; |
| 68 | 68 | } |
| 69 | 69 | |
| 70 | + /** |
|
| 71 | + * @param RelativeNamespaceDiscovery $object |
|
| 72 | + * @param string $method |
|
| 73 | + */ |
|
| 70 | 74 | function callProtected($object, $method, $args = []) |
| 71 | 75 | { |
| 72 | 76 | $r = new \ReflectionMethod($object, $method); |
@@ -38,10 +38,10 @@ discard block |
||
| 38 | 38 | public function testConvertPathToNamespaceData() |
| 39 | 39 | { |
| 40 | 40 | return [ |
| 41 | - ['/A/B/C', 'A\B\C'], |
|
| 42 | - ['A/B/C', 'A\B\C'], |
|
| 43 | - ['A/B/C', 'A\B\C'], |
|
| 44 | - ['A/B/C.php', 'A\B\C'], |
|
| 41 | + ['/A/B/C', 'A\B\C'], |
|
| 42 | + ['A/B/C', 'A\B\C'], |
|
| 43 | + ['A/B/C', 'A\B\C'], |
|
| 44 | + ['A/B/C.php', 'A\B\C'], |
|
| 45 | 45 | ]; |
| 46 | 46 | } |
| 47 | 47 | |
@@ -61,9 +61,9 @@ discard block |
||
| 61 | 61 | public function testConvertNamespaceToPathData() |
| 62 | 62 | { |
| 63 | 63 | return [ |
| 64 | - ['A\B\C', '/A/B/C'], |
|
| 65 | - ['\A\B\C\\', '/A/B/C'], |
|
| 66 | - ['A\B\C\\', '/A/B/C'], |
|
| 64 | + ['A\B\C', '/A/B/C'], |
|
| 65 | + ['\A\B\C\\', '/A/B/C'], |
|
| 66 | + ['A\B\C\\', '/A/B/C'], |
|
| 67 | 67 | ]; |
| 68 | 68 | } |
| 69 | 69 | |