2022-08-05 15:41:38 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace Arendsen\FluxQueryBuilder\Function;
|
|
|
|
|
|
2022-08-11 12:42:43 +00:00
|
|
|
use Arendsen\FluxQueryBuilder\Formatters;
|
|
|
|
|
|
2022-08-05 15:41:38 +00:00
|
|
|
abstract class Base {
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @throws FunctionNotImplementedException
|
|
|
|
|
*/
|
|
|
|
|
public function __toString()
|
|
|
|
|
{
|
|
|
|
|
throw new FunctionNotImplementedException('__toString', get_class($this));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|