Book
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 0
lcom 0
cbo 1
dl 0
loc 10
c 0
b 0
f 0
1
<?php
2
3
namespace LaraComponents\Seo\OpenGraph\Objects;
4
5
class Book extends TypeObject
0 ignored issues
show
Bug introduced by
There is one abstract method getType in this class; you could implement it, or declare this class as abstract.
Loading history...
6
{
7
    protected $author;
8
9
    protected $isbn;
10
11
    protected $releaseDate;
12
13
    protected $tag;
14
}
15