for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* The file handle route facade.
*
* @link https://github.com/maab16
* @since 1.0.0
*/
namespace WPB\Support\Facades;
use Illuminate\Support\Facades\Facade;
* The config class.
* @author Md Abu Ahsan basir <[email protected]>
class Route extends Facade
{
* Get the registered name of the component.
* @return string
protected static function getFacadeAccessor()
return \WPB\Router::class;
}