Issues (139)

src/Structure/ObjectItem.php (1 issue)

Severity
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
The trait Swaggest\JsonSchema\Structure\ObjectItemTrait requires some properties which are not provided by Swaggest\JsonSchema\Structure\ObjectItem: $name, $classSchema
Loading history...
17
}