flux-querybuilder/src/Function/Base.php

17 lines
292 B
PHP
Raw Normal View History

<?php
namespace Arendsen\FluxQueryBuilder\Function;
use Arendsen\FluxQueryBuilder\Formatters;
abstract class Base {
/**
* @throws FunctionNotImplementedException
*/
public function __toString()
{
throw new FunctionNotImplementedException('__toString', get_class($this));
}
}