swagger-php/Examples/petstore-simple/pets.php

18 lines
252 B
PHP

<?php
namespace PetstoreSimple;
class PetResource {
/**
* @SWG\Get(
* path="/pets",
* description="Returns all pets from the system that the user has access to"
* )
*/
function findPets() {
}
}