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.
Completed
Push — master ( 6b9c73...e83fae )
by Carlos
03:57 queued 35s
created

SintegraFacade::getFacadeAccessor()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 1
Code Lines 1

Duplication

Lines 0
Ratio 0 %
Metric Value
dl 0
loc 1
rs 10
cc 1
eloc 1
nc 1
nop 0
1
<?php namespace zServices\Laravel;
2
3
use Illuminate\Support\Facades\Facade;
4
5
/**
6
 * @see \Weidner\Goutte\Goutte
7
 */
8
class SintegraFacade extends Facade {
9
10
  /**
11
   * Get the registered name of the component.
12
   *
13
   * @return string
14
   */
15
  protected static function getFacadeAccessor() { return 'Sintegra'; }
16
17
}