| Current Path : /home/rtorresani/www/vendor/codeception/codeception/src/Codeception/Lib/Interfaces/ |
| Current File : //home/rtorresani/www/vendor/codeception/codeception/src/Codeception/Lib/Interfaces/DataMapper.php |
<?php
namespace Codeception\Lib\Interfaces;
interface DataMapper extends ORM, DoctrineProvider
{
public function haveInRepository(string $entity, array $data);
public function seeInRepository(string $entity, array $params = []): void;
public function dontSeeInRepository(string $entity, array $params = []): void;
public function grabFromRepository(string $entity, string $field, array $params = []);
}