for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* File: Client.php
* Category: Facade
* Author: M. Goldenbaum
* Created: 19.01.17 22:21
* Updated: -
*
* Description:
* -
*/
namespace Webklex\IMAP\Facades;
use Illuminate\Support\Facades\Facade;
use Webklex\PHPIMAP\ClientManager;
/**
* Class Client
* @package Webklex\IMAP\Facades
* @method \Webklex\PHPIMAP\Client account($name = null)
* @method \Webklex\PHPIMAP\Client make($options = [])
class Client extends Facade {
* Get the registered name of the component.
* @return string
protected static function getFacadeAccessor() {
return ClientManager::class;
}