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/Operators/UnaryOperators/SqlMaxOperator.php
2014-02-24 16:50:16 +01:00

8 lines
157 B
PHP

<?php
class SqlMaxOperator extends SqlUnaryOperator
{
public function getAsStringNonEmpty()
{
return 'MAX (' . $this->subject->getAsString() . ')';
}
}