Completed
Push — master ( 7a4b78...188c2e )
by Simone
02:26
created

Resource::hasNotProperty()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 2
Bugs 0 Features 0
Metric Value
c 2
b 0
f 0
dl 0
loc 4
rs 10
cc 1
eloc 2
nc 1
nop 1
1
<?php
2
3
/**
4
 * This file is part of sensorario/resources repository
5
 *
6
 * (c) Simone Gentili <[email protected]>
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
namespace Sensorario\Resources;
13
14
use RuntimeException;
15
16
abstract class Resource
17
    extends MagicResource
0 ignored issues
show
Coding Style introduced by
The extends keyword must be on the same line as the class name
Loading history...
18
{
19
    public static function mandatory()
20
    {
21
        return [];
22
    }
23
24
    public static function allowed()
25
    {
26
        return [];
27
    }
28
29
    public static function allowedValues()
30
    {
31
        return [];
32
    }
33
34
    public static function rules()
35
    {
36
        return [];
37
    }
38
}
39