IM   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A getFacadeAcessor() 0 3 1
1
<?php
2
3
namespace CTL\XMPPMessageBase;
4
5
use Illuminate\Support\Facades\Facade;
6
7
class IM extends Facade{
8
9
  /**
10
   * Facade Acessor
11
   * @return [type] [description]
0 ignored issues
show
Documentation introduced by
The doc-type [type] could not be parsed: Unknown type name "" at position 0. [(view supported doc-types)

This check marks PHPDoc comments that could not be parsed by our parser. To see which comment annotations we can parse, please refer to our documentation on supported doc-types.

Loading history...
12
   */
13
  protected static function getFacadeAcessor(){
14
    return 'IM';
15
  }
16
17
}