Skip to content

Commit

Permalink
Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
f3l1x committed Jun 27, 2016
1 parent 3e3c82e commit eabc69d
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 22 deletions.
2 changes: 1 addition & 1 deletion src/Bridges/Dibi/DataSources/DibiDataSource.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
use DibiException;
use Tlapnet\Report\DataSources\AbstractDatabaseConnectionDataSource;
use Tlapnet\Report\Exceptions\Runtime\DataSource\SqlException;
use Tlapnet\Report\Model\Result\Result;
use Tlapnet\Report\Model\Parameters\Parameters;
use Tlapnet\Report\Model\Result\Result;

class DibiDataSource extends AbstractDatabaseConnectionDataSource
{
Expand Down
42 changes: 21 additions & 21 deletions src/Model/Data/Fetcher/Fetcher.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,29 +5,29 @@
interface Fetcher
{

/**
* @return mixed
*/
public function fetch();
/**
* @return mixed
*/
public function fetch();

/**
* @param string $column
* @return mixed
*/
public function fetchSingle($column = NULL);
/**
* @param string $column
* @return mixed
*/
public function fetchSingle($column = NULL);

/**
* @param int $offset
* @param int $limit
* @return mixed
*/
public function fetchAll($offset = NULL, $limit = NULL);
/**
* @param int $offset
* @param int $limit
* @return mixed
*/
public function fetchAll($offset = NULL, $limit = NULL);

/**
* @param string $key
* @param string $value
* @return mixed
*/
public function fetchPairs($key = NULL, $value = NULL);
/**
* @param string $key
* @param string $value
* @return mixed
*/
public function fetchPairs($key = NULL, $value = NULL);

}

0 comments on commit eabc69d

Please sign in to comment.