Skip to content

Commit

Permalink
use entity phrase instead
Browse files Browse the repository at this point in the history
  • Loading branch information
connorhu committed Mar 1, 2024
1 parent bc71432 commit 5aca810
Show file tree
Hide file tree
Showing 11 changed files with 22 additions and 22 deletions.
4 changes: 2 additions & 2 deletions src/Query/Mysql/Acos.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
*
* @link https://dev.mysql.com/doc/refman/8.0/en/mathematical-functions.html#function_acos
*
* @example SELECT ACOS(2) FROM table
* @example SELECT ACOS(foo.bar) FROM table
* @example SELECT ACOS(2) FROM entity
* @example SELECT ACOS(foo.bar) FROM entity
*/
class Acos extends FunctionNode
{
Expand Down
4 changes: 2 additions & 2 deletions src/Query/Mysql/AddTime.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
*
* @link https://dev.mysql.com/doc/refman/8.0/en/date-and-time-functions.html#function_addtime
*
* @example SELECT ADDTIME('2019-03-01 14:35:00', '01:02:03') FROM table
* @example SELECT ADDTIME(foo.bar, '01:02:03') FROM table
* @example SELECT ADDTIME('2019-03-01 14:35:00', '01:02:03') FROM entity
* @example SELECT ADDTIME(foo.bar, '01:02:03') FROM entity
*/
class AddTime extends FunctionNode
{
Expand Down
2 changes: 1 addition & 1 deletion src/Query/Mysql/AesDecrypt.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
*
* @link https://dev.mysql.com/doc/refman/8.0/en/encryption-functions.html#function_aes-decrypt
*
* @example SELECT AES_DECRYPT(foo.crypt, foo.key) FROM table
* @example SELECT AES_DECRYPT(foo.crypt, foo.key) FROM entity
*/
class AesDecrypt extends FunctionNode
{
Expand Down
2 changes: 1 addition & 1 deletion src/Query/Mysql/AesEncrypt.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
*
* @link https://dev.mysql.com/doc/refman/8.0/en/encryption-functions.html#function_aes-encrypt
*
* @example SELECT AES_ENCRYPT(foo.to_crypt, foo.key) FROM table
* @example SELECT AES_ENCRYPT(foo.to_crypt, foo.key) FROM entity
*/
class AesEncrypt extends FunctionNode
{
Expand Down
2 changes: 1 addition & 1 deletion src/Query/Mysql/AnyValue.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*
* @link https://dev.mysql.com/doc/refman/8.0/en/miscellaneous-functions.html#function_any-value
*
* @example SELECT ANY_VALUE(foo.bar) FROM table
* @example SELECT ANY_VALUE(foo.bar) FROM entity
*/
class AnyValue extends FunctionNode
{
Expand Down
6 changes: 3 additions & 3 deletions src/Query/Mysql/Ascii.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
*
* @link https://dev.mysql.com/doc/refman/8.0/en/string-functions.html#function_ascii
*
* @example SELECT ASCII(foo.bar) FROM table
* @example SELECT ASCII('2') FROM table
* @example SELECT ASCII(2) FROM table
* @example SELECT ASCII(foo.bar) FROM entity
* @example SELECT ASCII('2') FROM entity
* @example SELECT ASCII(2) FROM entity
*/
class Ascii extends FunctionNode
{
Expand Down
4 changes: 2 additions & 2 deletions src/Query/Mysql/Asin.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
*
* @link https://dev.mysql.com/doc/refman/8.0/en/mathematical-functions.html#function_asin
*
* @example SELECT ASIN(foo.bar) FROM table
* @example SELECT ASIN(0.2) FROM table
* @example SELECT ASIN(foo.bar) FROM entity
* @example SELECT ASIN(0.2) FROM entity
*/
class Asin extends FunctionNode
{
Expand Down
6 changes: 3 additions & 3 deletions src/Query/Mysql/Atan.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
*
* @link https://dev.mysql.com/doc/refman/8.0/en/mathematical-functions.html#function_atan
*
* @example SELECT ATAN(foo.bar) FROM table
* @example SELECT ATAN(-2, 2) FROM table
* @example SELECT ATAN(PI(), 2) FROM table
* @example SELECT ATAN(foo.bar) FROM entity
* @example SELECT ATAN(-2, 2) FROM entity
* @example SELECT ATAN(PI(), 2) FROM entity
*/
class Atan extends FunctionNode
{
Expand Down
4 changes: 2 additions & 2 deletions src/Query/Mysql/Atan2.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
*
* @link https://dev.mysql.com/doc/refman/8.0/en/mathematical-functions.html#function_atan2
*
* @example SELECT ATAN2(-2, 2) FROM table
* @example SELECT ATAN2(PI(), 2) FROM table
* @example SELECT ATAN2(-2, 2) FROM entity
* @example SELECT ATAN2(PI(), 2) FROM entity
*/
class Atan2 extends FunctionNode
{
Expand Down
6 changes: 3 additions & 3 deletions src/Query/Mysql/Binary.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
*
* @link https://dev.mysql.com/doc/refman/8.0/en/cast-functions.html#operator_binary
*
* @example SELECT BINARY(foo.bar) FROM table
* @example SELECT BINARY("string") FROM table
* @example SELECT BINARY(2) FROM table
* @example SELECT BINARY(foo.bar) FROM entity
* @example SELECT BINARY("string") FROM entity
* @example SELECT BINARY(2) FROM entity
*/
class Binary extends FunctionNode
{
Expand Down
4 changes: 2 additions & 2 deletions src/Query/Mysql/BitCount.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
*
* @link https://dev.mysql.com/doc/refman/8.0/en/bit-functions.html#function_bit-count
*
* @example SELECT BIT_COUNT(foo.bar) FROM table
* @example SELECT BIT_COUNT(2) FROM table
* @example SELECT BIT_COUNT(foo.bar) FROM entity
* @example SELECT BIT_COUNT(2) FROM entity
*/
class BitCount extends FunctionNode
{
Expand Down

0 comments on commit 5aca810

Please sign in to comment.