Skip to content

Commit

Permalink
Add Phpdoc to Hex
Browse files Browse the repository at this point in the history
  • Loading branch information
connorhu committed Mar 1, 2024
1 parent 5c0216a commit 31e6061
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/Query/Mysql/Hex.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,12 @@
use Doctrine\ORM\Query\TokenType;

/**
* "HEX" "(" SimpleArithmeticExpression ")"
* HexFunction ::= "HEX" "(" SimpleArithmeticExpression ")"
*
* @link https://dev.mysql.com/doc/refman/en/string-functions.html#function_hex
*
* @example SELECT HEX("string")
* @example SELECT HEX(foo.bar) FROM entity
*/
class Hex extends FunctionNode
{
Expand Down

0 comments on commit 31e6061

Please sign in to comment.