Skip to content

Commit 57312a5

Browse files
committed
fixup! fix(install): Make installing more verbose
1 parent eedff48 commit 57312a5

File tree

4 files changed

+4
-10
lines changed

4 files changed

+4
-10
lines changed

lib/private/Migration/ConsoleOutput.php

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,7 @@ public function __construct(OutputInterface $output) {
4444
$this->output = $output;
4545
}
4646

47-
/**
48-
* @param string $message
49-
*/
50-
public function debug($message) {
47+
public function debug(string $message): void {
5148
$this->output->writeln($message);
5249
}
5350

lib/private/Migration/SimpleOutput.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public function __construct(LoggerInterface $logger, $appName) {
4141
$this->appName = $appName;
4242
}
4343

44-
public function debug($message) {
44+
public function debug(string $message): void {
4545
$this->logger->debug($message, ['app' => $this->appName]);
4646
}
4747

lib/private/Repair.php

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -246,10 +246,7 @@ public static function getBeforeUpgradeRepairSteps() {
246246
return $steps;
247247
}
248248

249-
/**
250-
* @param string $message
251-
*/
252-
public function debug($message) {
249+
public function debug(string $message): void {
253250
}
254251

255252
/**

lib/public/Migration/IOutput.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ interface IOutput {
3434
* @return void
3535
* @since 28.0.0
3636
*/
37-
public function debug($message);
37+
public function debug(string $message): void;
3838

3939
/**
4040
* @param string $message

0 commit comments

Comments
 (0)