mirror of
https://github.com/retailcrm/NelmioApiDocBundle.git
synced 2025-04-06 07:13:31 +03:00
Added clear()
This commit is contained in:
parent
a5a13501e2
commit
480fcc5ecd
2 changed files with 7 additions and 2 deletions
|
@ -322,6 +322,7 @@ class SwaggerFormatter implements FormatterInterface
|
|||
}
|
||||
|
||||
$apiDeclaration['models'] = $this->modelRegistry->getModels();
|
||||
$this->modelRegistry->clear();
|
||||
|
||||
return $apiDeclaration;
|
||||
}
|
||||
|
|
|
@ -34,8 +34,6 @@ class ModelRegistry
|
|||
|
||||
protected $classes = array();
|
||||
|
||||
protected $classMap = array();
|
||||
|
||||
/**
|
||||
* @var callable
|
||||
*/
|
||||
|
@ -241,4 +239,10 @@ class ModelRegistry
|
|||
{
|
||||
return $this->models;
|
||||
}
|
||||
|
||||
public function clear()
|
||||
{
|
||||
$this->models = array();
|
||||
$this->classes = array();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue