Skip to content

Commit fa1d30c

Browse files
committed
Merge branch 'main' of github.com:eloquentize/laravel-client
2 parents 19a2b0e + 180e6e4 commit fa1d30c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Commands/BaseCommand.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ class BaseCommand extends Command
1212

1313
public $defaultDateFormat = 'd/m/Y';
1414

15-
protected function execute(InputInterface $input, OutputInterface $output) : int
15+
protected function execute(InputInterface $input, OutputInterface $output): int
1616
{
1717
if (env('ELOQUENTIZE_API_TOKEN') === null) {
1818
throw new \Exception('ELOQUENTIZE_API_TOKEN is not set in .env');
@@ -31,7 +31,7 @@ protected function execute(InputInterface $input, OutputInterface $output) : int
3131
return parent::execute($input, $output);
3232
}
3333

34-
protected function cleanAppUrl($url) : string
34+
protected function cleanAppUrl($url): string
3535
{
3636
$url = preg_replace('#^https?://#', '', $url);
3737
$url = preg_replace('#^http?://#', '', $url);

0 commit comments

Comments
 (0)