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