Your IP : 216.73.216.81


Current Path : /srv/web/sites/trentinoplant.it/httpdocs/vendor/codeception/stub/tests/
Upload File :
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());
    }
}