summaryrefslogtreecommitdiffstats
path: root/src/common.php
blob: 3575c24a7f672a6273551340111d6b7b5cd6ae9b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php

/**
 * Defines common elements used by the library.
 *
 * @package SqlParser
 */

if (!function_exists('__')) {
    /**
     * Translates the given string.
     *
     * @param string $str String to be translated.
     *
     * @return string
     */
    function __($str)
    {
        return $str;
    }
}