Completed
Pull Request — master (#1930)
by Basil
02:21
created

Service::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 - Service
6
 *
7
 * A service provided by an organization, e.g. delivery service, print services, etc.
8
 *
9
 * @see http://schema.org/Service
10
 *
11
 * @author Alex Schmid <[email protected]>
12
 * @since 1.0.19
13
 */
14
class Service extends Intangible implements ServiceInterface
15
{
16
    use ServiceTrait;
17
18
    /**
19
     * {@inheritDoc}
20
     */
21
    public function typeDefintion()
22
    {
23
        return 'Service';
24
    }
25
}