| @@ -158,7 +158,7 @@ discard block | ||
| 158 | 158 | /** | 
| 159 | 159 | * Gets the configuration | 
| 160 | 160 | * | 
| 161 | - * @return array | |
| 161 | + * @return string | |
| 162 | 162 | */ | 
| 163 | 163 | public function getConfig() | 
| 164 | 164 |      { | 
| @@ -209,7 +209,7 @@ discard block | ||
| 209 | 209 | /** | 
| 210 | 210 | * Sets the output object for CLI output | 
| 211 | 211 | * | 
| 212 | - * @param \Symfony\Component\Console\Output\OutputInterface|\Monolog\Logger $output The output object | |
| 212 | + * @param \Symfony\Component\Console\Output\OutputInterface $output The output object | |
| 213 | 213 | * @throws \Exception | 
| 214 | 214 | * @return void | 
| 215 | 215 | */ | 
| @@ -230,7 +230,7 @@ discard block | ||
| 230 | 230 | /** | 
| 231 | 231 | * Gets the output object for CLI output | 
| 232 | 232 | * | 
| 233 | - * @return \Symfony\Component\Console\Output\OutputInterface|null | |
| 233 | + * @return \Symfony\Component\Console\Output\OutputInterface | |
| 234 | 234 | */ | 
| 235 | 235 | public function getOutput() | 
| 236 | 236 |      { | 
| @@ -739,7 +739,7 @@ discard block | ||
| 739 | 739 | * | 
| 740 | 740 | * @param string $table Lookup table | 
| 741 | 741 | * @param string $idField Field name of unique identifier (most single primary key) | 
| 742 | - * @param $compareField Compare field. e.g. 'name' in branch table | |
| 742 | + * @param string $compareField Compare field. e.g. 'name' in branch table | |
| 743 | 743 | * @param $compareValue Compare value. e.g. 'master' in branch table | 
| 744 | 744 | * @return int | 
| 745 | 745 | */ | 
| @@ -1094,7 +1094,7 @@ discard block | ||
| 1094 | 1094 | * See Gerrie\Transformer\DebugTransformDecorator | 
| 1095 | 1095 | * | 
| 1096 | 1096 | * @param array $data Data array where the keys will be unset | 
| 1097 | - * @param array $keyList List of keys which will be unset | |
| 1097 | + * @param string[] $keyList List of keys which will be unset | |
| 1098 | 1098 | * @return array | 
| 1099 | 1099 | */ | 
| 1100 | 1100 | public function unsetKeys(array $data, array $keyList) | 
| @@ -1867,7 +1867,7 @@ discard block | ||
| 1867 | 1867 | * Returns lookup values from a database table | 
| 1868 | 1868 | * | 
| 1869 | 1869 | * @param string $table Lookup tablename | 
| 1870 | - * @param array $selectFields Array of fields to select | |
| 1870 | + * @param string[] $selectFields Array of fields to select | |
| 1871 | 1871 | * @param array $whereParts Where parts which will be concatted with AND | 
| 1872 | 1872 | * @return mixed | 
| 1873 | 1873 | */ | 
| @@ -1931,6 +1931,9 @@ discard block | ||
| 1931 | 1931 | return $serverId; | 
| 1932 | 1932 | } | 
| 1933 | 1933 | |
| 1934 | + /** | |
| 1935 | + * @param string $message | |
| 1936 | + */ | |
| 1934 | 1937 | protected function outputHeadline($message) | 
| 1935 | 1938 |      { | 
| 1936 | 1939 |          $this->output('#'); |