| Total Complexity | 9 |
| Total Lines | 61 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 16 | class SecurityScheme |
||
| 17 | { |
||
| 18 | private $type; |
||
| 19 | private $description; |
||
| 20 | private $name; |
||
| 21 | private $in; |
||
| 22 | private $scheme; |
||
| 23 | private $bearerFormat; |
||
| 24 | private $flows; |
||
| 25 | private $openIdConnectUrl; |
||
| 26 | |||
| 27 | public function __construct(string $type = null, string $description = '', string $name = null, string $in = null, string $scheme = null, string $bearerFormat = null, OAuthFlows $flows = null, string $openIdConnectUrl = null) |
||
| 28 | { |
||
| 29 | $this->type = $type; |
||
| 30 | $this->description = $description; |
||
| 31 | $this->name = $name; |
||
| 32 | $this->in = $in; |
||
| 33 | $this->scheme = $scheme; |
||
| 34 | $this->bearerFormat = $bearerFormat; |
||
| 35 | $this->flows = $flows; |
||
| 36 | $this->openIdConnectUrl = $openIdConnectUrl; |
||
| 37 | } |
||
| 38 | |||
| 39 | public function getType() |
||
| 40 | { |
||
| 41 | return $this->type; |
||
| 42 | } |
||
| 43 | |||
| 44 | public function getDescription() |
||
| 47 | } |
||
| 48 | |||
| 49 | public function getName() |
||
| 50 | { |
||
| 51 | return $this->name; |
||
| 52 | } |
||
| 53 | |||
| 54 | public function getIn() |
||
| 57 | } |
||
| 58 | |||
| 59 | public function getScheme() |
||
| 60 | { |
||
| 61 | return $this->scheme; |
||
| 62 | } |
||
| 63 | |||
| 64 | public function getBearerFormat() |
||
| 67 | } |
||
| 68 | |||
| 69 | public function getFlows() |
||
| 72 | } |
||
| 73 | |||
| 74 | public function getOpenIdConnectUrl() |
||
| 77 | } |
||
| 78 | } |
||
| 79 |