Completed
Push — master ( f2796c...f6158b )
by Tom
23s queued 11s
created

SpeakableSpecification::xpath()   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
 * A SpeakableSpecification indicates (typically via [[xpath]] or
7
 * [[cssSelector]]) sections of a document that are highlighted as particularly
8
 * [[speakable]]. Instances of this type are expected to be used primarily as
9
 * values of the [[speakable]] property.
10
 *
11
 * @see http://schema.org/SpeakableSpecification
12
 *
13
 * @mixin \Spatie\SchemaOrg\Intangible
14
 * @method static cssSelector($cssSelector) The value should be instance of pending types CssSelectorType|CssSelectorType[]
15
 * @method static xpath($xpath) The value should be instance of pending types XPathType|XPathType[]
16
 */
17
class SpeakableSpecification extends BaseType
18
{
19
}
20