SwaggerGen/Swagger/Operation.php 1 location
|
@@ 59-61 (lines=3) @@
|
| 56 |
|
|
| 57 |
|
// string[] |
| 58 |
|
case 'tags': |
| 59 |
|
case 'schemes': |
| 60 |
|
$this->$command = array_merge($this->$command, self::wordSplit($data)); |
| 61 |
|
return $this; |
| 62 |
|
|
| 63 |
|
// MIME[] |
| 64 |
|
case 'consumes': |
SwaggerGen/Swagger/Swagger.php 1 location
|
@@ 105-107 (lines=3) @@
|
| 102 |
|
|
| 103 |
|
// string[] |
| 104 |
|
case 'scheme': |
| 105 |
|
case 'schemes': |
| 106 |
|
$this->$command = array_unique(array_merge($this->$command, self::wordSplit($data))); |
| 107 |
|
return $this; |
| 108 |
|
|
| 109 |
|
// MIME[] |
| 110 |
|
case 'consume': |