for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* This file is part of the Shieldon package.
*
* (c) Terry L. <[email protected]>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
* php version 7.1.0
* @category Web-security
* @package Shieldon
* @author Terry Lin <[email protected]>
* @copyright 2019 terrylinooo
* @license https://github.com/terrylinooo/shieldon/blob/2.x/LICENSE MIT
* @link https://github.com/terrylinooo/shieldon
* @see https://shieldon.io
*/
declare(strict_types=1);
namespace Shieldon\Firewall\Firewall\Messenger;
use Shieldon\Messenger\Messenger\MessengerInterface;
use Shieldon\Messenger\RocketChat;
* The get for RocketChat.
class ItemRocketChat
{
* Initialize and get the instance.
* @param array $setting The configuration of that messanger.
* @return MessengerInterface
public static function get(array $setting): MessengerInterface
$serverUrl = $setting['config']['server_url'] ?? '';
$userId = $setting['config']['user_id'] ?? '';
$accessToken = $setting['config']['access_token'] ?? '';
$channel = $setting['config']['channel'] ?? '';
return new RocketChat($accessToken, $userId, $serverUrl, $channel);
}