FoxySingleSignOnExtension   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 3
c 1
b 0
f 0
dl 0
loc 14
rs 10
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A syncFromFoxy() 0 2 1
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