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 WindowsManager methods into related facade
  • Loading branch information
milwad-dev committed Jul 21, 2023
commit e5c17807fae4c4c7eb481e0aa9b7bb1dcc9a73e3
8 changes: 8 additions & 0 deletions src/Facades/Window.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@

use Illuminate\Support\Facades\Facade;

/**
* @method static \Native\Laravel\Windows\PendingOpenWindow open(string $id = 'main')
* @method static void close($id = null)
* @method static object current()
* @method static void resize($width, $height, $id = null)
* @method static void position($x, $y, $animated = false, $id = null)
* @method static void alwaysOnTop($alwaysOnTop = true, $id = null)
*/
class Window extends Facade
{
protected static function getFacadeAccessor()
Expand Down
0