@@ -62,8 +62,8 @@ |
||
62 | 62 | // We mock the DialogHelper |
63 | 63 | $dialog = $this->createMock('N98\Util\Console\Helper\ParameterHelper', ['askPassword']); |
64 | 64 | $dialog->expects($this->at(0)) |
65 | - ->method('askPassword') |
|
66 | - ->willReturn(true); // The user confirms |
|
65 | + ->method('askPassword') |
|
66 | + ->willReturn(true); // The user confirms |
|
67 | 67 | |
68 | 68 | // We override the standard helper with our mock |
69 | 69 | $command->getHelperSet()->set($dialog, 'parameter'); |
@@ -297,7 +297,7 @@ |
||
297 | 297 | $dbHost = $this->config->getString('db_host'); |
298 | 298 | |
299 | 299 | if ($this->config->getInt('db_port') !== 3306) { |
300 | - $dbHost .= ':' . (string)$this->config->getInt('db_port'); |
|
300 | + $dbHost .= ':' . (string) $this->config->getInt('db_port'); |
|
301 | 301 | |
302 | 302 | return $dbHost; |
303 | 303 | } |
@@ -69,7 +69,7 @@ |
||
69 | 69 | ->addOption('consumer-secret', '', InputOption::VALUE_REQUIRED, 'Consumer Secret (length 32 chars)') |
70 | 70 | ->addOption('access-token', '', InputOption::VALUE_REQUIRED, 'Access-Token (length 32 chars)') |
71 | 71 | ->addOption('access-token-secret', '', InputOption::VALUE_REQUIRED, 'Access-Token Secret (length 32 chars)') |
72 | - ->addOption('resource', 'r', InputOption::VALUE_IS_ARRAY|InputOption::VALUE_REQUIRED, 'Defines a granted ACL resource', []) |
|
72 | + ->addOption('resource', 'r', InputOption::VALUE_IS_ARRAY | InputOption::VALUE_REQUIRED, 'Defines a granted ACL resource', []) |
|
73 | 73 | ->setDescription('Create a new integration'); |
74 | 74 | |
75 | 75 | $help = <<<HELP |
@@ -13,7 +13,7 @@ |
||
13 | 13 | * @param string $indent |
14 | 14 | * @return string|null |
15 | 15 | */ |
16 | - public static function exportVariable($var, $indent='') |
|
16 | + public static function exportVariable($var, $indent = '') |
|
17 | 17 | { |
18 | 18 | switch (gettype($var)) { |
19 | 19 | case 'string': |
@@ -31,7 +31,7 @@ |
||
31 | 31 | $this->detectDbSettings($output); |
32 | 32 | |
33 | 33 | $dbHelper = $this->getDatabaseHelper(); |
34 | - $connection = $dbHelper->getConnection($output, true); |
|
34 | + $connection = $dbHelper->getConnection($output, true); |
|
35 | 35 | |
36 | 36 | $roleTableName = $dbHelper->getTableName('authorization_role'); |
37 | 37 | $ruleTableName = $dbHelper->getTableName('authorization_rule'); |
@@ -178,7 +178,7 @@ |
||
178 | 178 | if (!isset($this->infos[$settingArgument])) { |
179 | 179 | throw new \InvalidArgumentException('Unknown key: ' . $settingArgument); |
180 | 180 | } |
181 | - $output->writeln((string)$this->infos[$settingArgument]); |
|
181 | + $output->writeln((string) $this->infos[$settingArgument]); |
|
182 | 182 | } else { |
183 | 183 | $this->getHelper('table') |
184 | 184 | ->setHeaders(['name', 'value']) |
@@ -223,7 +223,7 @@ |
||
223 | 223 | } |
224 | 224 | $client = new Client(); |
225 | 225 | $response = $client->get($changeLogUrl); |
226 | - $changeLogContent = (string)$response->getBody(); |
|
226 | + $changeLogContent = (string) $response->getBody(); |
|
227 | 227 | if ($changeLogContent) { |
228 | 228 | $versionFilePrinter = new VersionFilePrinter($changeLogContent); |
229 | 229 | $previousVersion = $this->getApplication()->getVersion(); |