diff options
author | Michal Čihař <michal@cihar.com> | 2016-03-01 17:14:40 +0100 |
---|---|---|
committer | Michal Čihař <michal@cihar.com> | 2016-12-21 15:03:20 +0100 |
commit | 5f81f21c24c820b6b315a5d4d2ff9e74b4a7dc35 (patch) | |
tree | d3ad1aa2b69d187b322029ed9514b27176f5b3cf /src/Components/ArrayObj.php | |
parent | 741897c4108b12eab04a887f0c9093e183e72c26 (diff) | |
download | sql-parser-5f81f21c24c820b6b315a5d4d2ff9e74b4a7dc35.zip sql-parser-5f81f21c24c820b6b315a5d4d2ff9e74b4a7dc35.tar.gz sql-parser-5f81f21c24c820b6b315a5d4d2ff9e74b4a7dc35.tar.bz2 |
Replace __( usage by Translator class
Signed-off-by: Michal Čihař <michal@cihar.com>
Diffstat (limited to 'src/Components/ArrayObj.php')
-rw-r--r-- | src/Components/ArrayObj.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Components/ArrayObj.php b/src/Components/ArrayObj.php index bed7fc7..d9449f2 100644 --- a/src/Components/ArrayObj.php +++ b/src/Components/ArrayObj.php @@ -115,7 +115,7 @@ class ArrayObj extends Component && (($token->type !== Token::TYPE_OPERATOR) || ($token->value !== '(')) ) { - $parser->error(__('An opening bracket was expected.'), $token); + $parser->error('An opening bracket was expected.', $token); break; } |