15 lines
249 B
PHP
15 lines
249 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace Arendsen\FluxQueryBuilder\Function;
|
||
|
|
|
||
|
|
abstract class Base {
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @throws FunctionNotImplementedException
|
||
|
|
*/
|
||
|
|
public function __toString()
|
||
|
|
{
|
||
|
|
throw new FunctionNotImplementedException('__toString', get_class($this));
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|