Passed
Push — master ( 5d259d...069a18 )
by Conrad
02:00
created

src/Models/Scope.php (3 issues)

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
3
namespace AdvancedLearning\Oauth2Server\Models;
4
5
use SilverStripe\ORM\DataObject;
6
7
/**
8
 * Class Scope
9
 *
10
 * @package AdvancedLearning\Oauth2Server\Models
11
 *
12
 * @property string $Name
13
 * @property string $Description
14
 */
15
class Scope extends DataObject
16
{
17
    private static $table_name = 'OauthScope';
0 ignored issues
show
The property $table_name is not used and could be removed.

This check marks private properties in classes that are never used. Those properties can be removed.

Loading history...
18
19
    private static $db = [
0 ignored issues
show
The property $db is not used and could be removed.

This check marks private properties in classes that are never used. Those properties can be removed.

Loading history...
20
        'Name' => 'Varchar(100)',
21
        'Description' => 'Varchar(255)'
22
    ];
23
24
    private static $summary_fields = [
0 ignored issues
show
The property $summary_fields is not used and could be removed.

This check marks private properties in classes that are never used. Those properties can be removed.

Loading history...
25
        'Name',
26
        'Description'
27
    ];
28
}
29