Issues (39)

tests/Stub/RegistryPageTestSubclass.php (1 issue)

Severity
1
<?php
2
3
namespace SilverStripe\Registry\Tests\Stub;
4
5
use SilverStripe\Dev\TestOnly;
6
use SilverStripe\Registry\RegistryPage;
7
use SilverStripe\Registry\RegistryPageController;
8
9
class RegistryPageTestSubclass extends RegistryPage implements TestOnly
10
{
11
    private static $table_name = 'RegistryPageTestSubclass';
0 ignored issues
show
The private property $table_name is not used, and could be removed.
Loading history...
12
}
13