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

use Illuminate\Support\Facades\Facade;

/**
* @method static string arch()
* @method static string platform()
* @method static float uptime()
* @method static object fresh()
*/
class Process extends Facade
{
protected static function getFacadeAccessor()
Expand Down
0