summaryrefslogtreecommitdiffstats
path: root/src/Exceptions
diff options
context:
space:
mode:
authorMichal Čihař <michal@cihar.com>2016-09-26 09:41:23 +0200
committerMichal Čihař <michal@cihar.com>2016-09-26 09:41:23 +0200
commitc66456f7dcc953a6246d9a5c5fa27bf0efb11a65 (patch)
tree81deb3195aafff4366c747c13ef0212a6422b6c8 /src/Exceptions
parentd6a8791ac89f5ec4cbb872ff2915542234c143c8 (diff)
downloadsql-parser-c66456f7dcc953a6246d9a5c5fa27bf0efb11a65.zip
sql-parser-c66456f7dcc953a6246d9a5c5fa27bf0efb11a65.tar.gz
sql-parser-c66456f7dcc953a6246d9a5c5fa27bf0efb11a65.tar.bz2
Clarify license
- Add link to official license text - Use SPDX identifier for license - Clarify that the code is GPL or later - See issue #89 Signed-off-by: Michal Čihař <michal@cihar.com>
Diffstat (limited to 'src/Exceptions')
-rw-r--r--src/Exceptions/LexerException.php2
-rw-r--r--src/Exceptions/ParserException.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/Exceptions/LexerException.php b/src/Exceptions/LexerException.php
index 36c2387..2dd3041 100644
--- a/src/Exceptions/LexerException.php
+++ b/src/Exceptions/LexerException.php
@@ -14,7 +14,7 @@ namespace SqlParser\Exceptions;
* @category Exceptions
* @package SqlParser
* @subpackage Exceptions
- * @license http://opensource.org/licenses/GPL-2.0 GNU Public License
+ * @license https://www.gnu.org/licenses/gpl-2.0.txt GPL-2.0+
*/
class LexerException extends \Exception
{
diff --git a/src/Exceptions/ParserException.php b/src/Exceptions/ParserException.php
index e4d0aaa..81f6259 100644
--- a/src/Exceptions/ParserException.php
+++ b/src/Exceptions/ParserException.php
@@ -16,7 +16,7 @@ use SqlParser\Token;
* @category Exceptions
* @package SqlParser
* @subpackage Exceptions
- * @license http://opensource.org/licenses/GPL-2.0 GNU Public License
+ * @license https://www.gnu.org/licenses/gpl-2.0.txt GPL-2.0+
*/
class ParserException extends \Exception
{