mirror of
				https://github.com/OpenAPITools/openapi-generator.git
				synced 2025-11-04 02:33:54 +00:00 
			
		
		
		
	* Update configuration.mustache added return tag in PHPDoc * made sanitizeFilename as static method * updated petstore
		
			
				
	
	
		
			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\Client\Baz\Qux class
 | 
						|
 * from /path/to/project/lib/Baz/Qux.php:
 | 
						|
 *
 | 
						|
 *      new \Swagger\Client\Baz\Qux;
 | 
						|
 *
 | 
						|
 * @param string $class The fully-qualified class name.
 | 
						|
 *
 | 
						|
 * @return void
 | 
						|
 */
 | 
						|
spl_autoload_register(function ($class) {
 | 
						|
 | 
						|
    // project-specific namespace prefix
 | 
						|
    $prefix = 'Swagger\\Client\\';
 | 
						|
 | 
						|
    // base directory for the namespace prefix
 | 
						|
    $base_dir = __DIR__ . '/lib/';
 | 
						|
 | 
						|
    // 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;
 | 
						|
    }
 | 
						|
});
 |