@@ -33,6 +33,9 @@ discard block |
||
33 | 33 | return $this->systemOs; |
34 | 34 | } |
35 | 35 | |
36 | + /** |
|
37 | + * @param string $command |
|
38 | + */ |
|
36 | 39 | public function fixDir($command) |
37 | 40 | { |
38 | 41 | if ($this->getSystemOs() === "Windows") { |
@@ -44,7 +47,7 @@ discard block |
||
44 | 47 | /** |
45 | 48 | * Execute the given command by displaying console output live to the user. |
46 | 49 | * |
47 | - * @param string|array $cmd : command to be executed |
|
50 | + * @param string $cmd : command to be executed |
|
48 | 51 | * @return array exit_status : exit status of the executed command |
49 | 52 | * output : console output of the executed command |
50 | 53 | * @throws ConfigNotFoundException |
@@ -100,7 +103,7 @@ discard block |
||
100 | 103 | } |
101 | 104 | |
102 | 105 | /** |
103 | - * @param string|Closure $variableValue |
|
106 | + * @param string $variableValue |
|
104 | 107 | * @return mixed |
105 | 108 | * @throws ConfigNotFoundException |
106 | 109 | * @throws EnvironmentException |
@@ -15,7 +15,6 @@ |
||
15 | 15 | use ByJG\RestServer\ResponseBag; |
16 | 16 | use Psr\SimpleCache\InvalidArgumentException; |
17 | 17 | use ReflectionException; |
18 | -use RestTemplate\Model\User; |
|
19 | 18 | use Swagger\Annotations as SWG; |
20 | 19 | |
21 | 20 | class Login extends ServiceAbstractBase |