FoxySingleSignOnExtension::syncFromFoxy()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 0

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 0
c 1
b 0
f 0
nc 1
nop 0
dl 0
loc 2
rs 10
1
<?php
2
3
namespace Dynamic\Foxy\SingleSignOn\Extension;
4
5
use SilverStripe\Admin\LeftAndMainExtension;
6
7
/**
8
 * Class FoxySingleSignOnExtension
9
 * @package Dynamic\Foxy\SingleSignOn\Extension
10
 */
11
class FoxySingleSignOnExtension extends LeftAndMainExtension
12
{
13
    /**
14
     * @var array
15
     */
16
    private static $allowed_actions = [
0 ignored issues
show
introduced by
The private property $allowed_actions is not used, and could be removed.
Loading history...
17
        'syncFromFoxy',
18
    ];
19
20
    /**
21
     *
22
     */
23
    public function syncFromFoxy()
24
    {
25
        //sync method here
26
    }
27
}
28