8 lines
108 B
PHP
8 lines
108 B
PHP
<?php
|
|
|
|
namespace DatabaseHelper\interfaces;
|
|
|
|
interface UpdateBuilder
|
|
{
|
|
public function exec() : array;
|
|
} |