forked from loafle/openapi-generator-original
* Removed commented code * Input validation is now supported as strict JSON validation * [PHP][Symfony] Improve the implementation Closes #6614 * Generated code is tested to assure it compiles and updated README to dynamically load dependencies via composer * Updated shell script because shippable tests were failing
55 lines
1.6 KiB
PHP
55 lines
1.6 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Swagger Petstore
|
|
*
|
|
* This is a sample server Petstore server. You can find out more about Swagger at [http://swagger.io](http://swagger.io) or on [irc.freenode.net, #swagger](http://swagger.io/irc/). For this sample, you can use the api key `special-key` to test the authorization filters.
|
|
*
|
|
* OpenAPI spec version: 1.0.0
|
|
* Contact: apiteam@swagger.io
|
|
* Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
*
|
|
*/
|
|
|
|
/**
|
|
* An example of a project-specific implementation.
|
|
*
|
|
* After registering this autoload function with SPL, the following line
|
|
* would cause the function to attempt to load the \Swagger\Server\Baz\Qux class
|
|
* from /path/to/project/./Baz/Qux.php:
|
|
*
|
|
* new \Swagger\Server\Baz\Qux;
|
|
*
|
|
* @param string $class The fully-qualified class name.
|
|
*
|
|
* @return void
|
|
*/
|
|
spl_autoload_register(function ($class) {
|
|
|
|
// project-specific namespace prefix
|
|
$prefix = 'Swagger\\Server\\';
|
|
|
|
// base directory for the namespace prefix
|
|
$base_dir = __DIR__ . '/./';
|
|
|
|
// does the class use the namespace prefix?
|
|
$len = strlen($prefix);
|
|
if (strncmp($prefix, $class, $len) !== 0) {
|
|
// no, move to the next registered autoloader
|
|
return;
|
|
}
|
|
|
|
// get the relative class name
|
|
$relative_class = substr($class, $len);
|
|
|
|
// replace the namespace prefix with the base directory, replace namespace
|
|
// separators with directory separators in the relative class name, append
|
|
// with .php
|
|
$file = $base_dir . str_replace('\\', '/', $relative_class) . '.php';
|
|
|
|
// if the file exists, require it
|
|
if (file_exists($file)) {
|
|
require $file;
|
|
}
|
|
});
|