Skip to content

Commit f0bf5fc

Browse files
authored
[8.x] Use Artisan Console View Components (#1132)
Signed-off-by: Mior Muhammad Zaki <[email protected]>
1 parent 509dc7c commit f0bf5fc

File tree

3 files changed

+15
-15
lines changed

3 files changed

+15
-15
lines changed

src/Console/ChromeDriverCommand.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ public function handle()
103103

104104
$message = 'ChromeDriver %s successfully installed for version %s.';
105105

106-
$this->info(sprintf($message, $all ? 'binaries' : 'binary', $version));
106+
$this->components->info(sprintf($message, $all ? 'binaries' : 'binary', $version));
107107
}
108108

109109
/**
@@ -176,7 +176,7 @@ protected function detectChromeVersion($os)
176176
return $matches[1];
177177
}
178178

179-
$this->error('Chrome version could not be detected.');
179+
$this->components->error('Chrome version could not be detected.');
180180

181181
return false;
182182
}

src/Console/InstallCommand.php

+11-11
Original file line numberDiff line numberDiff line change
@@ -98,21 +98,21 @@ public function handle()
9898
));
9999
}
100100

101-
$this->info('Dusk scaffolding installed successfully.');
101+
$this->components->info('Dusk scaffolding installed successfully.');
102102

103-
$this->comment('Downloading ChromeDriver binaries...');
103+
$this->components->task('Downloading ChromeDriver binaries...', function () {
104+
$driverCommandArgs = [];
104105

105-
$driverCommandArgs = [];
106-
107-
if ($this->option('proxy')) {
108-
$driverCommandArgs['--proxy'] = $this->option('proxy');
109-
}
106+
if ($this->option('proxy')) {
107+
$driverCommandArgs['--proxy'] = $this->option('proxy');
108+
}
110109

111-
if ($this->option('ssl-no-verify')) {
112-
$driverCommandArgs['--ssl-no-verify'] = true;
113-
}
110+
if ($this->option('ssl-no-verify')) {
111+
$driverCommandArgs['--ssl-no-verify'] = true;
112+
}
114113

115-
$this->call('dusk:chrome-driver', $driverCommandArgs);
114+
$this->call('dusk:chrome-driver', $driverCommandArgs);
115+
});
116116
}
117117

118118
/**

src/Console/PurgeCommand.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ protected function purgeDebuggingFiles($relativePath, $patterns)
9696
$path = base_path($relativePath);
9797

9898
if (! is_dir($path)) {
99-
$this->warn(
99+
$this->components->warn(
100100
"Unable to purge missing directory [{$relativePath}].", OutputInterface::VERBOSITY_DEBUG
101101
);
102102

@@ -111,6 +111,6 @@ protected function purgeDebuggingFiles($relativePath, $patterns)
111111
@unlink($file->getRealPath());
112112
}
113113

114-
$this->info("Purged \"{$patterns}\" from [{$relativePath}].");
114+
$this->components->info("Purged \"{$patterns}\" from [{$relativePath}].");
115115
}
116116
}

0 commit comments

Comments
 (0)