Issues (30)

src/Admin/ClientAdmin.php (4 issues)

Severity
1
<?php
2
3
namespace BiffBangPow\SSMonitor\Server\Admin;
4
5
use BiffBangPow\SSMonitor\Server\Model\Client;
6
use SilverStripe\Admin\ModelAdmin;
7
8
/**
9
 * Class \BiffBangPow\SSMonitor\Server\Admin\ClientAdmin
10
 *
11
 */
12
class ClientAdmin extends ModelAdmin
13
{
14
    private static $menu_icon_class = 'font-icon-flow-tree';
0 ignored issues
show
The private property $menu_icon_class is not used, and could be removed.
Loading history...
15
16
    private static $menu_title = 'Monitoring Client Admin';
0 ignored issues
show
The private property $menu_title is not used, and could be removed.
Loading history...
17
18
    private static $url_segment = 'bbp-monitoring';
0 ignored issues
show
The private property $url_segment is not used, and could be removed.
Loading history...
19
20
    private static $managed_models = [
0 ignored issues
show
The private property $managed_models is not used, and could be removed.
Loading history...
21
      Client::class
22
    ];
23
}
24