Completed
Push — 2.0 ( 41983c...50afc7 )
by Nic
04:01
created

FlexSliderExtension::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

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