for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace nyx\notify;
/**
* Notify Service Facade
*
* @package Nyx\Notify
* @version 0.1.0
* @author Michal Chojnacki <[email protected]>
* @copyright 2012-2017 Nyx Dev Team
* @link https://github.com/unyx/nyx
* @see TransportManager
*/
class Facade extends \Illuminate\Support\Facades\Facade
{
* {@inheritDoc}
protected static function getFacadeAccessor()
return TransportManager::class;
}