Skip to content

Commit ce562c7

Browse files
committed
laravel 11 compatibility
1 parent 97d23e3 commit ce562c7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"php": "^8.0",
2323
"guzzlehttp/guzzle": "^6.0 | ^7.0",
2424
"illuminate/contracts": "^8.0 | ^9.0 | ^10.0 | ^11.0",
25-
"nesbot/carbon": "^2.0",
25+
"nesbot/carbon": "^2.0 | ^3.0",
2626
"spatie/laravel-package-tools": "^1.0 | ^1.14.0"
2727
},
2828
"require-dev": {

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)
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)
3131
return parent::execute($input, $output);
3232
}
3333

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

0 commit comments

Comments
 (0)