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.

Parser   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
dl 0
loc 9
rs 10
c 0
b 0
f 0
wmc 1
lcom 0
cbo 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A getFacadeAccessor() 0 1 1
1
<?php
2
3
namespace Nathanmac\Utilities\Parser\Facades;
4
5
use Illuminate\Support\Facades\Facade;
6
7
/**
8
 * Parser Facade, supporting Laravel implementations.
9
 *
10
 * @package    Nathanmac\Utilities\Parser\Facades
11
 * @author     Nathan Macnamara <[email protected]>
12
 * @license    https://github.com/nathanmac/Parser/blob/master/LICENSE.md  MIT
13
 *
14
 * @method     static array payload(string $format = '') Parse the HTTP payload data, autodetect format and return all data in array. Override the format by providing a content type.
15
 *
16
 * @method     static array xml(string $payload) XML to Array
17
 * @method     static array json(string $payload) JSON to Array
18
 * @method     static array yaml(string $payload) YAML to Array
19
 * @method     static array querystr(string $payload) Query String to Array
20
 * @method     static array serialize(string $payload) Serialized Object to Array
21
 * @method     static array bson(string $payload) BSON to Array
22
 * @method     static array msgpack(string $payload) MSGPack to Array
23
 *
24
 * @method     static array all() Alias to the payload function.
25
 * @method     static array get(string $key = null, string $default = null) Retrieve an payload item from the payload data, return default item if item not found.
26
 * @method     static array has(string|array $keys) Determine if the payload contains a non-empty value for a given key.
27
 * @method     static array only(string|array $keys) Get a subset of the items from the payload data.
28
 * @method     static array except(string|array $keys) Get all of the input except for a specified array of items.
29
 */
30
class Parser extends Facade
31
{
32
    /**
33
     * Get the registered name of the component.
34
     *
35
     * @return string
36
     */
37
    protected static function getFacadeAccessor() { return 'Parser'; }
38
}
39