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

WebPageElement::cssSelector()   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 web page element, like a table or an image.
7
 *
8
 * @see http://schema.org/WebPageElement
9
 *
10
 * @mixin \Spatie\SchemaOrg\CreativeWork
11
 * @method static cssSelector($cssSelector) The value should be instance of pending types CssSelectorType|CssSelectorType[]
12
 * @method static xpath($xpath) The value should be instance of pending types XPathType|XPathType[]
13
 */
14
class WebPageElement extends BaseType
15
{
16
}
17