Skip to content

Commit

Permalink
Adds interface
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobemerick committed Jan 18, 2017
1 parent bf8bbf2 commit f899d0b
Showing 1 changed file with 51 additions and 0 deletions.
51 changes: 51 additions & 0 deletions src/ParsedSwaggerInterface.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
<?php

namespace AvalancheDevelopment\SwaggerRounterMiddleware;

interface ParsedSwaggerInterface
{
/**
* @return string
*/
public function getApiPath();

/**
* @return array
*/
public function getPath();

/**
* @return array
*/
public function getOperation();

/**
* @return array
*/
public function getParameters();

/**
* @return array
*/
public function getSecurity();

/**
* @return array
*/
public function getSchemes();

/**
* @return array
*/
public function getProduces();

/**
* @return array
*/
public function getConsumes();

/**
* @return array
*/
public function getResponses();
}

0 comments on commit f899d0b

Please sign in to comment.