File: /home/nepi/public_html/src/core/Directus/Database/Repositories/RepositoryInterface.php
<?php
namespace Directus\Database\Repositories;
use Directus\Database\RowGateway\BaseRowGateway;
interface RepositoryInterface
{
/**
* Finds one record with the given attribute
*
* @param string $attribute
* @param mixed $value
*
* @return array|BaseRowGateway
*/
public function findOneBy($attribute, $value);
/**
* Finds one record with the given id
*
* @param string|int $id
*
* @return array|BaseRowGateway
*/
public function find($id);
}