| Current Path : /srv/web/sites/trentinoplant.it/httpdocs/vendor/codeception/stub/tests/ |
| Current File : /srv/web/sites/trentinoplant.it/httpdocs/vendor/codeception/stub/tests/ResetMocks.php |
<?php
declare(strict_types=1);
trait ResetMocks
{
protected function resetMockObjects()
{
$refl = new ReflectionObject($this);
while (!$refl->hasProperty('mockObjects')) {
$refl = $refl->getParentClass();
}
$prop = $refl->getProperty('mockObjects');
$prop->setAccessible(true);
$prop->setValue($this, array());
}
}