%PDF- %GIF98; %PNG;
Server : ApacheSystem : Linux host.digitalbabaji.in 4.18.0-513.11.1.el8_9.x86_64 #1 SMP Wed Jan 17 02:00:40 EST 2024 x86_64 User : addictionfreeind ( 1003) PHP Version : 7.2.34 Disable Function : exec,passthru,shell_exec,system Directory : /home/addictionfreeind/public_html/admin1/vendor/webklex/laravel-imap/src/Facades/ |
Upload File : |
<?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;
}
}