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
Comprehensibility introduced by
Consider using a different property name as you override a private property of the parent class.
Loading history...
18
19
    private static $db = [
0 ignored issues
show
Comprehensibility introduced by
Consider using a different property name as you override a private property of the parent class.
Loading history...
20
        'Name' => 'Varchar(100)',
21
        'Description' => 'Varchar(255)'
22
    ];
23
24
    private static $summary_fields = [
0 ignored issues
show
Comprehensibility introduced by
Consider using a different property name as you override a private property of the parent class.
Loading history...
25
        'Name',
26
        'Description'
27
    ];
28
}
29