mirror of
https://github.com/retailcrm/NelmioApiDocBundle.git
synced 2025-02-02 15:51:48 +03:00
19 lines
315 B
PHP
19 lines
315 B
PHP
<?php
|
|
|
|
namespace Nelmio\ApiDocBundle\Tests\Extractor;
|
|
|
|
use Nelmio\ApiDocBundle\Extractor\ApiDocExtractor;
|
|
|
|
class TestExtractor extends ApiDocExtractor
|
|
{
|
|
public function __construct()
|
|
{
|
|
|
|
}
|
|
|
|
public function getNormalization($input)
|
|
{
|
|
return $this->normalizeClassParameter($input);
|
|
}
|
|
}
|