File: /home/posscale/public_html/printmanager/vendor/webklex/laravel-imap/src/Facades/Client.php
<?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 static \Webklex\PHPIMAP\Client account($name = null)
* @method static \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;
}
}