* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Sonata\Doctrine\Model; /** * @author Jordi Sala */ interface ClearableManagerInterface { /** * NEXT_MAJOR: Remove $objectName parameter. * * Clears the object manager for the given model. */ public function clear(?string $objectName = null): void; }