18 lines
No EOL
366 B
PHP
18 lines
No EOL
366 B
PHP
<?php
|
|
|
|
namespace Arendsen\FluxQueryBuilder\Functions;
|
|
|
|
use Arendsen\FluxQueryBuilder\Formatters;
|
|
use Arendsen\FluxQueryBuilder\Exception\FunctionNotImplementedException;
|
|
|
|
abstract class Base {
|
|
|
|
/**
|
|
* @throws FunctionNotImplementedException
|
|
*/
|
|
public function __toString()
|
|
{
|
|
throw new FunctionNotImplementedException('__toString', get_class($this));
|
|
}
|
|
|
|
} |