Completed
Push — master ( fd0635...f2796c )
by Tom
06:08
created

BroadcastFrequencySpecification   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 17
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A broadcastFrequencyValue() 0 4 1
1
<?php
2
3
namespace Spatie\SchemaOrg;
4
5
/**
6
 * The frequency in MHz and the modulation used for a particular
7
 * BroadcastService.
8
 *
9
 * @see http://schema.org/BroadcastFrequencySpecification
10
 *
11
 * @mixin \Spatie\SchemaOrg\Intangible
12
 */
13
class BroadcastFrequencySpecification extends BaseType
14
{
15
    /**
16
     * The frequency in MHz for a particular broadcast.
17
     *
18
     * @param QuantitativeValue|QuantitativeValue[]|float|float[]|int|int[] $broadcastFrequencyValue
19
     *
20
     * @return static
21
     *
22
     * @see http://schema.org/broadcastFrequencyValue
23
     */
24
    public function broadcastFrequencyValue($broadcastFrequencyValue)
25
    {
26
        return $this->setProperty('broadcastFrequencyValue', $broadcastFrequencyValue);
27
    }
28
29
}
30