for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace JDesrosiers\Silex\Provider;
use Silex\Application;
use Swagger\Swagger;
class SwaggerService
{
public function __invoke(Application $app)
return new Swagger($app["swagger.servicePath"], $app["swagger.excludePath"]);
}