Completed
Push — master ( cbd248...25f371 )
by Nic
02:57
created

FlexSliderExtension::onAfterInit()   D

Complexity

Conditions 9
Paths 192

Size

Total Lines 46
Code Lines 23

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 46
rs 4.8275
c 0
b 0
f 0
cc 9
eloc 23
nc 192
nop 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A FlexSliderExtension::__construct() 0 5 1
1
<?php
2
3
/**
4
 * Class FlexSliderExtension
5
 *
6
 * @deprecated 1.0.0 This class's methods have been moved to {@link FlexSlider}
7
 */
8
class FlexSliderExtension extends Extension
9
{
10
    public function __construct()
11
    {
12
        trigger_error('Class no longer used, please remove references to this class from any extension declarations.', E_USER_NOTICE);
13
        parent::__construct();
14
    }
15
}
16