Create Facade.php

This commit is contained in:
Tony Roy 2021-03-10 17:38:33 -04:00 committed by GitHub
commit 9f09f266b6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

17
src/Facade.php Normal file
View file

@ -0,0 +1,17 @@
<?php
namespace wickedsoft\NetBox;
/**
* @method static \wickedsoft\NetBox\Api
*/
class Facade extends \Illuminate\Support\Facades\Facade
{
/**
* {@inheritDoc}
*/
protected static function getFacadeAccessor()
{
return 'NetBox';
}
}