IM::getFacadeAcessor()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 3
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 0
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
}