Your IP : 216.73.217.13


Current Path : /home/rtorresani/www/vendor/codeception/codeception/src/Codeception/Lib/Interfaces/
Upload File :
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 = []);
}