for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Created by IntelliJ IDEA.
* User: hugh.li
* Date: 2020/3/15
* Time: 18:36
*/
namespace HughCube\ACMClient;
use Illuminate\Support\Facades\Facade;
* @method static Client connection(string $name = null)
*
* @see Manager
* @see Client
class ACM extends Facade
{
* Get the registered name of the component.
* @return string
protected static function getFacadeAccessor()
return 'acm';
}