diff options
author | Haru <haru@dotalux.com> | 2019-11-18 21:02:01 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-18 21:02:01 +0100 |
commit | 5e61cd4f23492fded25d48a4d6609603d916c5e5 (patch) | |
tree | fae5542ba5319753087129d92b6f8032b9a09147 /tools/php-sqllint/src/phpsqllint/Renderer.php | |
parent | fac2eef6c66b1da34c68963732f8afece3a5289f (diff) | |
parent | 8312581eb96d1d497fbce59a7a33fc55a6c236b5 (diff) | |
download | hercules-5e61cd4f23492fded25d48a4d6609603d916c5e5.tar.gz hercules-5e61cd4f23492fded25d48a4d6609603d916c5e5.tar.bz2 hercules-5e61cd4f23492fded25d48a4d6609603d916c5e5.tar.xz hercules-5e61cd4f23492fded25d48a4d6609603d916c5e5.zip |
Merge pull request #2582 from 4144/sqlvalidation
Add script for sql files syntax validation
Diffstat (limited to 'tools/php-sqllint/src/phpsqllint/Renderer.php')
-rw-r--r-- | tools/php-sqllint/src/phpsqllint/Renderer.php | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/tools/php-sqllint/src/phpsqllint/Renderer.php b/tools/php-sqllint/src/phpsqllint/Renderer.php new file mode 100644 index 000000000..5b68ee11a --- /dev/null +++ b/tools/php-sqllint/src/phpsqllint/Renderer.php @@ -0,0 +1,54 @@ +<?php +/** + * Part of php-sqllint + * + * PHP version 5 + * + * @category Tools + * @package PHP-SQLlint + * @author Christian Weiske <cweiske@cweiske.de> + * @license http://www.gnu.org/licenses/agpl.html GNU AGPL v3 + * @link http://cweiske.de/php-sqllint.htm + */ +namespace phpsqllint; + +/** + * What every renderer has to implement + * + * @category Tools + * @package PHP-SQLlint + * @author Christian Weiske <cweiske@cweiske.de> + * @license http://www.gnu.org/licenses/agpl.html GNU AGPL v3 + * @link http://www.emacswiki.org/emacs/CreatingYourOwnCompileErrorRegexp + */ +interface Renderer +{ + /** + * Begin syntax check output rendering + * + * @param string $filename Path to the SQL file + * + * @return void + */ + public function startRendering($filename); + + /** + * Output errors in GNU style; see emacs compilation.txt + * + * @param string $msg Error message + * @param string $token Character which caused the error + * @param integer $line Line at which the error occured + * @param integer $col Column at which the error occured + * + * @return void + */ + public function displayError($msg, $token, $line, $col); + + /** + * Finish syntax check output rendering; no syntax errors found + * + * @return void + */ + public function finishOk(); +} +?> |