Passed
Push — master ( 301f96...5c3d68 )
by Robbie
05:48
created

LeftAndMainPageIconsExtensionTest/ModuleIconC.php (1 issue)

Severity
1
<?php
2
3
namespace SilverStripe\CMS\Tests\Controllers\LeftAndMainpageIconsExtensionTest;
4
5
use SilverStripe\CMS\Model\SiteTree;
6
use SilverStripe\Dev\TestOnly;
7
8
class ModuleIconC extends SiteTree implements TestOnly
9
{
10
    private static $extensions = [
0 ignored issues
show
The private property $extensions is not used, and could be removed.
Loading history...
11
        ModuleIconExtension::class,
12
    ];
13
}
14