Completed
Pull Request — master (#54)
by Tom
07:40
created

Periodical::issn()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 1
1
<?php
2
3
namespace Spatie\SchemaOrg;
4
5
/**
6
 * A publication in any medium issued in successive parts bearing numerical or
7
 * chronological designations and intended, such as a magazine, scholarly
8
 * journal, or newspaper to continue indefinitely.
9
 * 
10
 * See also [blog
11
 * post](http://blog.schema.org/2014/09/schemaorg-support-for-bibliographic_2.html).
12
 *
13
 * @see http://schema.org/Periodical
14
 */
15
class Periodical extends CreativeWorkSeries
16
{
17
}
18