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

Service   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 - 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
}