for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Soap\Invoices\Facades;
use Illuminate\Support\Facades\Facade;
/**
* Class Invoice
* @package LaravelDaily\Invoices\Facades
*/
class Invoice extends Facade
{
* Get the registered name of the component.
*
* @return string
protected static function getFacadeAccessor()
return 'invoice';
}