Skip to content

Commit

Permalink
chore: laravel 9 support (#14)
Browse files Browse the repository at this point in the history
Co-authored-by: Javier Quiroga Almeida <quiroga218@gmail.com>
  • Loading branch information
jquirogaa and Javier1995 committed Jan 27, 2023
1 parent d9d5a56 commit 14dfceb
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 3 deletions.
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
"php": ">=7.2",
"guzzlehttp/guzzle": "^6.3 || ^7.0",
"intercom/intercom-php": "^3.2 || ^4.0",
"illuminate/notifications": "~6.0 || ~7.0 || ~8.0",
"illuminate/support": "~6.0 || ~7.0 || ~8.0"
"illuminate/notifications": "~6.0 || ~7.0 || ~8.0 || ~9.0",
"illuminate/support": "~6.0 || ~7.0 || ~8.0 || ~9.0"
},
"require-dev": {
"mockery/mockery": "^1.3",
Expand Down
19 changes: 18 additions & 1 deletion tests/Mocks/TestFakeApplication.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,23 @@ public function version()
{
}

/**
* {@inheritdoc}
*/
public function maintenanceMode()
{
}

/**
* {@inheritdoc}
*/
public function terminating($callback)
{
}




/**
* {@inheritdoc}
*/
Expand Down Expand Up @@ -144,7 +161,7 @@ public function resourcePath($path = '')
/**
* {@inheritdoc}
*/
public function storagePath()
public function storagePath($path = '')
{
}

Expand Down

0 comments on commit 14dfceb

Please sign in to comment.