9 lines
176 B
PHP
9 lines
176 B
PHP
<?php namespace MapGuesser\Interfaces\Database;
|
|
|
|
interface IStatement
|
|
{
|
|
public function execute(array $params): ?IResultSet;
|
|
|
|
public function getAffectedRows(): int;
|
|
}
|