for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace DoctrineModule\Persistence;
use Doctrine\Persistence\ObjectManager;
use function interface_exists;
// phpcs:disable SlevomatCodingStandard.Classes.SuperfluousInterfaceNaming
interface ObjectManagerAwareInterface
{
// phpcs:enable SlevomatCodingStandard.Classes.SuperfluousInterfaceNaming
/**
* Set the object manager
*/
public function setObjectManager(ObjectManager $objectManager) : void;
* Get the object manager
public function getObjectManager() : ObjectManager;
}
interface_exists(ObjectManager::class);