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

Intangible::typeDefintion()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
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
}