<?php
namespace IlluminateSupportFacades;
/**
* @see IlluminateContractsBusDispatcher
*/
class Bus extends Facade
{
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor()
{
return 'IlluminateContractsBusDispatcher';
}
}