8000 Add facade methods by milwad-dev · Pull Request #30 · NativePHP/laravel · GitHub
[go: up one dir, main page]

Skip to content

Add facade methods #30

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 12 commits into from
Jul 21, 2023
Prev Previous commit
Next Next commit
add GlobalShortcut methods into related facade
  • Loading branch information
milwad-dev committed Jul 21, 2023
commit 3961d3728e3bdb797795b4c660bd9ff9a464c9d4
6 changes: 6 additions & 0 deletions src/Facades/GlobalShortcut.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@

use Illuminate\Support\Facades\Facade;

/**
* @method static self key(string $key)
* @method static self event(string $event)
* @method static void register()
* @method static void unregister()
*/
class GlobalShortcut extends Facade
{
protected static function getFacadeAccessor()
Expand Down
0