This repository has been archived on 2025-02-26. You can view files and clone it, but cannot push or open issues or pull requests.
szurubooru/src/Sql/Functors/FunctionFunctors/SqlAbsFunctor.php

14 lines
166 B
PHP
Raw Normal View History

<?php
class SqlAbsFunctor extends SqlUnaryFunctor
{
public function getFunctionName()
{
return 'ABS';
}
public function getArgumentCount()
{
return 1;
}
}