ObjectItem
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 3
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 2
dl 0
loc 3
c 0
b 0
f 0
1
<?php
2
3
namespace Swaggest\JsonSchema\Structure;
4
5
/**
6
 * @method getNestedObject($className);
7
 * @method setNestedProperty($propertyName, $value, Egg $nestedEgg);
8
 * @method addAdditionalPropertyName($name);
9
 * @method setDocumentPath($path);
10
 * @method setFromRef($ref);
11
 * @method string|null getFromRef();
12
 * @method string[]|null getFromRefs();
13
 */
14
class ObjectItem implements ObjectItemContract, WithResolvedValue
15
{
16
    use ObjectItemTrait;
0 ignored issues
show
introduced by
The trait Swaggest\JsonSchema\Structure\ObjectItemTrait requires some properties which are not provided by Swaggest\JsonSchema\Structure\ObjectItem: $name, $classSchema
Loading history...
17
}