Media   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 0
dl 0
loc 11
rs 10
c 0
b 0
f 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
A getType() 0 4 1
setType() 0 1 ?
1
<?php
2
3
namespace LaraComponents\Seo\OpenGraph;
4
5
abstract class Media
6
{
7
    protected $type;
8
9
    public function getType()
10
    {
11
        return $this->type;
12
    }
13
14
    abstract public function setType($type);
15
}
16