GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.

AMQP   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 5
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 2
c 1
b 0
f 0
dl 0
loc 5
rs 10
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A getFacadeAccessor() 0 3 1
1
<?php
2
/**
3
 * This file is part of the mucts.com.
4
 *
5
 * This source file is subject to the MIT license that is bundled
6
 * with this source code in the file LICENSE.
7
 *
8
 * @version 1.0
9
 * @author herry<[email protected]>
10
 * @copyright © 2020  MuCTS.com All Rights Reserved.
11
 */
12
13
namespace MuCTS\Laravel\AMQP\Facades;
14
15
16
use Illuminate\Support\Facades\Facade;
17
use MuCTS\Laravel\AMQP\AMQPManager;
18
19
/**
20
 * Class AMQP
21
 *
22
 * @mixin AMQPManager
23
 * @method static AMQPManager connection(?string $name = null)
24
 * @method static AMQPManager setQueue(string $queue)
25
 * @method static AMQPManager setExchange(string $exchange)
26
 * @method static AMQPManager setExchangeType(string $exchangeType)
27
 * @method static AMQPManager setConsumerTag(string $consumerTag)
28
 * @method static AMQPManager setAutoAck(bool $autoAsk)
29
 * @method static AMQPManager setRouteKey(string $routeKey)
30
 * @package MuCTS\Laravel\AMQP\Facades
31
 */
32
class AMQP extends Facade
33
{
34
    protected static function getFacadeAccessor()
35
    {
36
        return AMQPManager::class;
37
    }
38
}