Skip to content

Commit a9a6007

Browse files
authored
Merge pull request #16 from minasm/master
Added Laravel 11 Compatibility and IDE Support
2 parents 2b60bc7 + ef54c4e commit a9a6007

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
],
1212
"require": {
1313
"guzzlehttp/guzzle": "^7.0.1",
14-
"illuminate/support": "^8.0|^9.0|^10.0",
15-
"illuminate/contracts": "^8.0|^9.0|^10.0"
14+
"illuminate/support": "^8.0|^9.0|^10.0|^11.0",
15+
"illuminate/contracts": "^8.0|^9.0|^10.0|^11.0"
1616
},
1717
"autoload": {
1818
"psr-4": {

src/Facades/Eod.php

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,18 @@
33
namespace RadicalLoop\Eod\Facades;
44

55
use Illuminate\Support\Facades\Facade;
6+
use RadicalLoop\Eod\Api\Exchange;
7+
use RadicalLoop\Eod\Api\Stock;
68

9+
/**
10+
* @method static Stock stock()
11+
* @method static Exchange exchange()
12+
*/
713
class Eod extends Facade
814
{
915
protected static function getFacadeAccessor()
1016
{
1117
return 'radicalloop.eod';
1218
}
19+
1320
}

0 commit comments

Comments
 (0)