StaffAdmin
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 19
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 0
eloc 6
c 1
b 0
f 0
dl 0
loc 19
1
<?php
2
3
namespace Dynamic\Staff\Admin;
4
5
use Dynamic\Staff\Model\StaffDepartment;
6
use Dynamic\Staff\Pages\StaffMember;
7
use LittleGiant\CatalogManager\ModelAdmin\CatalogPageAdmin;
8
9
class StaffAdmin extends CatalogPageAdmin
10
{
11
    /**
12
     * @var array
13
     */
14
    private static $managed_models = [
0 ignored issues
show
introduced by
The private property $managed_models is not used, and could be removed.
Loading history...
15
        StaffMember::class,
16
        StaffDepartment::class,
17
    ];
18
19
    /**
20
     * @var string
21
     */
22
    private static $url_segment = 'staff';
0 ignored issues
show
introduced by
The private property $url_segment is not used, and could be removed.
Loading history...
23
24
    /**
25
     * @var string
26
     */
27
    private static $menu_title = 'Staff';
0 ignored issues
show
introduced by
The private property $menu_title is not used, and could be removed.
Loading history...
28
}
29