10 lines
165 B
PHP
10 lines
165 B
PHP
<?php namespace Majestic\Model;
|
|
|
|
interface iSqlResultItems
|
|
{
|
|
public function fetchAll();
|
|
|
|
public function fetchField($field);
|
|
|
|
public function fetch();
|
|
} |