Completed
Pull Request — master (#1)
by Viacheslav
06:08
created

ClassSchema   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 1
lcom 0
cbo 2
dl 0
loc 8
rs 10
c 1
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A nested() 0 4 1
1
<?php
2
3
namespace Swaggest\JsonSchema\Structure;
4
5
6
use Swaggest\JsonSchema\Schema;
7
8
class ClassSchema extends Schema
9
{
10
    public function nested()
11
    {
12
        return new Nested($this);
13
    }
14
15
}