Skip to content

Commit

Permalink
Create Select.php
Browse files Browse the repository at this point in the history
  • Loading branch information
flancer64 authored May 13, 2020
1 parent 4842cb8 commit 0dcdd73
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions Api/Repo/Query/Select.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<?php
/**
* Authors: Alex Gusev <alex@flancer64.com>
* Since: 2020
*/

namespace Flancer32\Base\Api\Repo\Query;


interface Select
{
/**
* Build SELECT query that is optionally based on other SELECT query (this builder modifies $source query).
*
* @param \Magento\Framework\DB\Select $source
* @return \Magento\Framework\DB\Select
*/
public function build($source = null);
}

0 comments on commit 0dcdd73

Please sign in to comment.