Skip to content

Commit

Permalink
Merge pull request #16 from minasm/master
Browse files Browse the repository at this point in the history
Added Laravel 11 Compatibility and IDE Support
  • Loading branch information
radicalloop authored Aug 6, 2024
2 parents 2b60bc7 + ef54c4e commit a9a6007
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
],
"require": {
"guzzlehttp/guzzle": "^7.0.1",
"illuminate/support": "^8.0|^9.0|^10.0",
"illuminate/contracts": "^8.0|^9.0|^10.0"
"illuminate/support": "^8.0|^9.0|^10.0|^11.0",
"illuminate/contracts": "^8.0|^9.0|^10.0|^11.0"
},
"autoload": {
"psr-4": {
Expand Down
7 changes: 7 additions & 0 deletions src/Facades/Eod.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,18 @@
namespace RadicalLoop\Eod\Facades;

use Illuminate\Support\Facades\Facade;
use RadicalLoop\Eod\Api\Exchange;
use RadicalLoop\Eod\Api\Stock;

/**
* @method static Stock stock()
* @method static Exchange exchange()
*/
class Eod extends Facade
{
protected static function getFacadeAccessor()
{
return 'radicalloop.eod';
}

}

0 comments on commit a9a6007

Please sign in to comment.