mirror of
https://github.com/doctrine/data-fixtures.git
synced 2026-03-23 22:32:13 +01:00
14 lines
248 B
PHP
14 lines
248 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Doctrine\Tests\Mock;
|
|
|
|
use Closure;
|
|
use Doctrine\ODM\PHPCR\DocumentManager;
|
|
|
|
abstract class PHPCRDocumentManager extends DocumentManager
|
|
{
|
|
abstract public function transactional(Closure $func): void;
|
|
}
|