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

broadcastFrequencyValue()   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 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