flux-querybuilder/src/Function/Base.php

15 lines
249 B
PHP
Raw Normal View History

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