forked from zircote/swagger-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAttachable.php
73 lines (69 loc) · 1.69 KB
/
Attachable.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<?php declare(strict_types=1);
/**
* @license Apache 2.0
*/
namespace OpenApi\Annotations;
/**
* A container for custom data to be attached to an annotation.
*
* These will be ignored by `swagger-php` but can be used for custom processing.
*
* @Annotation
*/
class Attachable extends AbstractAnnotation
{
/**
* @inheritdoc
*/
public static $_parents = [
AdditionalProperties::class,
Components::class,
Contact::class,
Delete::class,
Discriminator::class,
Examples::class,
ExternalDocumentation::class,
Flow::class,
Get::class,
Head::class,
Header::class,
Info::class,
Items::class,
JsonContent::class,
License::class,
Link::class,
MediaType::class,
OpenApi::class,
Operation::class,
Options::class,
Parameter::class,
Patch::class,
PathItem::class,
PathParameter::class,
Post::class,
Property::class,
Put::class,
RequestBody::class,
Response::class,
Schema::class,
SecurityScheme::class,
Server::class,
ServerVariable::class,
Tag::class,
Trace::class,
Xml::class,
XmlContent::class,
];
/**
* Allows to type-hint a specific parent annotation class.
*
* Container to allow custom annotations that are limited to a subset of potential parent
* annotation classes.
*
* @return array<class-string>|null List of valid parent annotation classes. If `null`, the default nesting rules apply.
*/
public function allowedParents(): ?array
{
return null;
}
}