Put.php 275 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * @license Apache 2.0
  4. */
  5. namespace Swagger\Annotations;
  6. /**
  7. * @Annotation
  8. */
  9. class Put extends Operation
  10. {
  11. /** @inheritdoc */
  12. public $method = 'put';
  13. /** @inheritdoc */
  14. public static $_parents = [
  15. 'Swagger\Annotations\Path'
  16. ];
  17. }