andela-iadeniyi/Potato-ORM

View on GitHub
src/Interface/RelationshipsInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
/**
 * Defining Interface for class DatabaseQueryInterface.
 *
 * @package Ibonly\PotatoORM\DatabaseQueryInterface
 * @author  Ibraheem ADENIYI <ibonly01@gmail.com>
 * @license MIT <https://opensource.org/licenses/MIT>
 */

namespace Ibonly\PotatoORM;

interface RelationshipsInterface
{
    public function joinClause();

    public function whereClause($data, $condition);
}