Completed
Pull Request — master (#1930)
by Basil
01:58
created

Intangible   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 2
dl 0
loc 12
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A typeDefintion() 0 4 1
1
<?php
2
namespace luya\web\jsonld;
3
4
/**
5
 * JsonLd - Intangible
6
 *
7
 * A utility class that serves as the umbrella for a number of 'intangible' things such as quantities, structured values, etc.
8
 *
9
 * @see http://schema.org/Intangible
10
 *
11
 * @author Alex Schmid <[email protected]>
12
 * @since 1.0.19
13
 */
14
class Intangible extends BaseThing implements IntangibleInterface
15
{
16
    /**
17
     * @inheritDoc
18
     */
19
    public function typeDefintion()
20
    {
21
        return 'Intangible';
22
    }
23
24
    use IntangibleTrait;
25
}