From 337ae26402423433291f4c88c7e551e3e68c9754 Mon Sep 17 00:00:00 2001 From: Timothy J Warren Date: Wed, 18 Mar 2020 11:31:56 -0400 Subject: [PATCH] Update header comments --- build/header_comment.txt | 2 +- src/ConnectionManager.php | 2 +- src/Drivers/AbstractDriver.php | 2 +- src/Drivers/AbstractSQL.php | 2 +- src/Drivers/AbstractUtil.php | 2 +- src/Drivers/DriverInterface.php | 2 +- src/Drivers/Mysql/Driver.php | 2 +- src/Drivers/Mysql/SQL.php | 2 +- src/Drivers/Mysql/Util.php | 2 +- src/Drivers/Pgsql/Driver.php | 2 +- src/Drivers/Pgsql/SQL.php | 2 +- src/Drivers/Pgsql/Util.php | 2 +- src/Drivers/SQLInterface.php | 2 +- src/Drivers/Sqlite/Driver.php | 2 +- src/Drivers/Sqlite/SQL.php | 2 +- src/Drivers/Sqlite/Util.php | 2 +- src/Exception/BadDBDriverException.php | 2 +- src/Exception/NonExistentConnectionException.php | 2 +- src/Exception/NotImplementedException.php | 2 +- src/QueryBuilder.php | 2 +- src/QueryBuilderInterface.php | 2 +- src/QueryParser.php | 2 +- src/QueryType.php | 2 +- src/State.php | 2 +- src/common.php | 2 +- tests/BaseDriverTest.php | 2 +- tests/BaseQueryBuilderTest.php | 2 +- tests/ConnectionManagerTest.php | 2 +- tests/CoreTest.php | 2 +- tests/Drivers/MySQL/MySQLDriverTest.php | 2 +- tests/Drivers/MySQL/MySQLQueryBuilderTest.php | 2 +- tests/Drivers/PgSQL/PgSQLDriverTest.php | 2 +- tests/Drivers/PgSQL/PgSQLQueryBuilderTest.php | 2 +- tests/Drivers/SQLite/SQLiteDriverTest.php | 2 +- tests/Drivers/SQLite/SQLiteQueryBuilderTest.php | 2 +- tests/QueryParserTest.php | 2 +- tests/TestCase.php | 2 +- tests/index.php | 2 +- 38 files changed, 38 insertions(+), 38 deletions(-) diff --git a/build/header_comment.txt b/build/header_comment.txt index 8d113b6..3a6f96c 100644 --- a/build/header_comment.txt +++ b/build/header_comment.txt @@ -7,7 +7,7 @@ * * @package Query * @author Timothy J. Warren - * @copyright 2012 - 2019 Timothy J. Warren + * @copyright 2012 - 2020 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License * @link https://git.timshomepage.net/aviat/Query * @version 3.0.0 diff --git a/src/ConnectionManager.php b/src/ConnectionManager.php index 36314b6..d56da9d 100644 --- a/src/ConnectionManager.php +++ b/src/ConnectionManager.php @@ -8,7 +8,7 @@ * * @package Query * @author Timothy J. Warren - * @copyright 2012 - 2019 Timothy J. Warren + * @copyright 2012 - 2020 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License * @link https://git.timshomepage.net/aviat/Query * @version 3.0.0 diff --git a/src/Drivers/AbstractDriver.php b/src/Drivers/AbstractDriver.php index 4f83616..8d63dfe 100644 --- a/src/Drivers/AbstractDriver.php +++ b/src/Drivers/AbstractDriver.php @@ -8,7 +8,7 @@ * * @package Query * @author Timothy J. Warren - * @copyright 2012 - 2019 Timothy J. Warren + * @copyright 2012 - 2020 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License * @link https://git.timshomepage.net/aviat/Query * @version 3.0.0 diff --git a/src/Drivers/AbstractSQL.php b/src/Drivers/AbstractSQL.php index 2e669fe..29e0a32 100644 --- a/src/Drivers/AbstractSQL.php +++ b/src/Drivers/AbstractSQL.php @@ -8,7 +8,7 @@ * * @package Query * @author Timothy J. Warren - * @copyright 2012 - 2019 Timothy J. Warren + * @copyright 2012 - 2020 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License * @link https://git.timshomepage.net/aviat/Query * @version 3.0.0 diff --git a/src/Drivers/AbstractUtil.php b/src/Drivers/AbstractUtil.php index c2de1d0..89322c5 100644 --- a/src/Drivers/AbstractUtil.php +++ b/src/Drivers/AbstractUtil.php @@ -8,7 +8,7 @@ * * @package Query * @author Timothy J. Warren - * @copyright 2012 - 2019 Timothy J. Warren + * @copyright 2012 - 2020 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License * @link https://git.timshomepage.net/aviat/Query * @version 3.0.0 diff --git a/src/Drivers/DriverInterface.php b/src/Drivers/DriverInterface.php index 4e02abe..f207cdc 100644 --- a/src/Drivers/DriverInterface.php +++ b/src/Drivers/DriverInterface.php @@ -8,7 +8,7 @@ * * @package Query * @author Timothy J. Warren - * @copyright 2012 - 2019 Timothy J. Warren + * @copyright 2012 - 2020 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License * @link https://git.timshomepage.net/aviat/Query * @version 3.0.0 diff --git a/src/Drivers/Mysql/Driver.php b/src/Drivers/Mysql/Driver.php index 32c984f..4dc872a 100644 --- a/src/Drivers/Mysql/Driver.php +++ b/src/Drivers/Mysql/Driver.php @@ -8,7 +8,7 @@ * * @package Query * @author Timothy J. Warren - * @copyright 2012 - 2019 Timothy J. Warren + * @copyright 2012 - 2020 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License * @link https://git.timshomepage.net/aviat/Query * @version 3.0.0 diff --git a/src/Drivers/Mysql/SQL.php b/src/Drivers/Mysql/SQL.php index dcb36c4..e6a8b73 100644 --- a/src/Drivers/Mysql/SQL.php +++ b/src/Drivers/Mysql/SQL.php @@ -8,7 +8,7 @@ * * @package Query * @author Timothy J. Warren - * @copyright 2012 - 2019 Timothy J. Warren + * @copyright 2012 - 2020 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License * @link https://git.timshomepage.net/aviat/Query * @version 3.0.0 diff --git a/src/Drivers/Mysql/Util.php b/src/Drivers/Mysql/Util.php index 5860978..021fe88 100644 --- a/src/Drivers/Mysql/Util.php +++ b/src/Drivers/Mysql/Util.php @@ -8,7 +8,7 @@ * * @package Query * @author Timothy J. Warren - * @copyright 2012 - 2019 Timothy J. Warren + * @copyright 2012 - 2020 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License * @link https://git.timshomepage.net/aviat/Query * @version 3.0.0 diff --git a/src/Drivers/Pgsql/Driver.php b/src/Drivers/Pgsql/Driver.php index 3de596f..cc2cd49 100644 --- a/src/Drivers/Pgsql/Driver.php +++ b/src/Drivers/Pgsql/Driver.php @@ -8,7 +8,7 @@ * * @package Query * @author Timothy J. Warren - * @copyright 2012 - 2019 Timothy J. Warren + * @copyright 2012 - 2020 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License * @link https://git.timshomepage.net/aviat/Query * @version 3.0.0 diff --git a/src/Drivers/Pgsql/SQL.php b/src/Drivers/Pgsql/SQL.php index 250095c..9545e22 100644 --- a/src/Drivers/Pgsql/SQL.php +++ b/src/Drivers/Pgsql/SQL.php @@ -8,7 +8,7 @@ * * @package Query * @author Timothy J. Warren - * @copyright 2012 - 2019 Timothy J. Warren + * @copyright 2012 - 2020 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License * @link https://git.timshomepage.net/aviat/Query * @version 3.0.0 diff --git a/src/Drivers/Pgsql/Util.php b/src/Drivers/Pgsql/Util.php index b8b4556..4512377 100644 --- a/src/Drivers/Pgsql/Util.php +++ b/src/Drivers/Pgsql/Util.php @@ -8,7 +8,7 @@ * * @package Query * @author Timothy J. Warren - * @copyright 2012 - 2019 Timothy J. Warren + * @copyright 2012 - 2020 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License * @link https://git.timshomepage.net/aviat/Query * @version 3.0.0 diff --git a/src/Drivers/SQLInterface.php b/src/Drivers/SQLInterface.php index aa2a576..d99afb9 100644 --- a/src/Drivers/SQLInterface.php +++ b/src/Drivers/SQLInterface.php @@ -8,7 +8,7 @@ * * @package Query * @author Timothy J. Warren - * @copyright 2012 - 2019 Timothy J. Warren + * @copyright 2012 - 2020 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License * @link https://git.timshomepage.net/aviat/Query * @version 3.0.0 diff --git a/src/Drivers/Sqlite/Driver.php b/src/Drivers/Sqlite/Driver.php index 8b4ae67..cdfe2db 100644 --- a/src/Drivers/Sqlite/Driver.php +++ b/src/Drivers/Sqlite/Driver.php @@ -8,7 +8,7 @@ * * @package Query * @author Timothy J. Warren - * @copyright 2012 - 2019 Timothy J. Warren + * @copyright 2012 - 2020 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License * @link https://git.timshomepage.net/aviat/Query * @version 3.0.0 diff --git a/src/Drivers/Sqlite/SQL.php b/src/Drivers/Sqlite/SQL.php index 5ea51d3..6ee5942 100644 --- a/src/Drivers/Sqlite/SQL.php +++ b/src/Drivers/Sqlite/SQL.php @@ -8,7 +8,7 @@ * * @package Query * @author Timothy J. Warren - * @copyright 2012 - 2019 Timothy J. Warren + * @copyright 2012 - 2020 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License * @link https://git.timshomepage.net/aviat/Query * @version 3.0.0 diff --git a/src/Drivers/Sqlite/Util.php b/src/Drivers/Sqlite/Util.php index 53bc2be..2fe1367 100644 --- a/src/Drivers/Sqlite/Util.php +++ b/src/Drivers/Sqlite/Util.php @@ -8,7 +8,7 @@ * * @package Query * @author Timothy J. Warren - * @copyright 2012 - 2019 Timothy J. Warren + * @copyright 2012 - 2020 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License * @link https://git.timshomepage.net/aviat/Query * @version 3.0.0 diff --git a/src/Exception/BadDBDriverException.php b/src/Exception/BadDBDriverException.php index b7f21a1..8c90efd 100644 --- a/src/Exception/BadDBDriverException.php +++ b/src/Exception/BadDBDriverException.php @@ -8,7 +8,7 @@ * * @package Query * @author Timothy J. Warren - * @copyright 2012 - 2019 Timothy J. Warren + * @copyright 2012 - 2020 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License * @link https://git.timshomepage.net/aviat/Query * @version 3.0.0 diff --git a/src/Exception/NonExistentConnectionException.php b/src/Exception/NonExistentConnectionException.php index 4c9ddde..e9cad01 100644 --- a/src/Exception/NonExistentConnectionException.php +++ b/src/Exception/NonExistentConnectionException.php @@ -8,7 +8,7 @@ * * @package Query * @author Timothy J. Warren - * @copyright 2012 - 2019 Timothy J. Warren + * @copyright 2012 - 2020 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License * @link https://git.timshomepage.net/aviat/Query * @version 3.0.0 diff --git a/src/Exception/NotImplementedException.php b/src/Exception/NotImplementedException.php index 725a566..77a28ee 100644 --- a/src/Exception/NotImplementedException.php +++ b/src/Exception/NotImplementedException.php @@ -8,7 +8,7 @@ * * @package Query * @author Timothy J. Warren - * @copyright 2012 - 2019 Timothy J. Warren + * @copyright 2012 - 2020 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License * @link https://git.timshomepage.net/aviat/Query * @version 3.0.0 diff --git a/src/QueryBuilder.php b/src/QueryBuilder.php index 6db6e6b..aada10c 100644 --- a/src/QueryBuilder.php +++ b/src/QueryBuilder.php @@ -8,7 +8,7 @@ * * @package Query * @author Timothy J. Warren - * @copyright 2012 - 2019 Timothy J. Warren + * @copyright 2012 - 2020 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License * @link https://git.timshomepage.net/aviat/Query * @version 3.0.0 diff --git a/src/QueryBuilderInterface.php b/src/QueryBuilderInterface.php index 6a0934d..91a7fa7 100644 --- a/src/QueryBuilderInterface.php +++ b/src/QueryBuilderInterface.php @@ -8,7 +8,7 @@ * * @package Query * @author Timothy J. Warren - * @copyright 2012 - 2019 Timothy J. Warren + * @copyright 2012 - 2020 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License * @link https://git.timshomepage.net/aviat/Query * @version 3.0.0 diff --git a/src/QueryParser.php b/src/QueryParser.php index 5412cd2..6c4a677 100644 --- a/src/QueryParser.php +++ b/src/QueryParser.php @@ -8,7 +8,7 @@ * * @package Query * @author Timothy J. Warren - * @copyright 2012 - 2019 Timothy J. Warren + * @copyright 2012 - 2020 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License * @link https://git.timshomepage.net/aviat/Query * @version 3.0.0 diff --git a/src/QueryType.php b/src/QueryType.php index cfcc47f..99ed84b 100644 --- a/src/QueryType.php +++ b/src/QueryType.php @@ -8,7 +8,7 @@ * * @package Query * @author Timothy J. Warren - * @copyright 2012 - 2019 Timothy J. Warren + * @copyright 2012 - 2020 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License * @link https://git.timshomepage.net/aviat/Query * @version 3.0.0 diff --git a/src/State.php b/src/State.php index b859d63..acb94f1 100644 --- a/src/State.php +++ b/src/State.php @@ -8,7 +8,7 @@ * * @package Query * @author Timothy J. Warren - * @copyright 2012 - 2019 Timothy J. Warren + * @copyright 2012 - 2020 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License * @link https://git.timshomepage.net/aviat/Query * @version 3.0.0 diff --git a/src/common.php b/src/common.php index a1b1fe2..a0c94af 100644 --- a/src/common.php +++ b/src/common.php @@ -8,7 +8,7 @@ * * @package Query * @author Timothy J. Warren - * @copyright 2012 - 2019 Timothy J. Warren + * @copyright 2012 - 2020 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License * @link https://git.timshomepage.net/aviat/Query * @version 3.0.0 diff --git a/tests/BaseDriverTest.php b/tests/BaseDriverTest.php index 950daa4..7921911 100644 --- a/tests/BaseDriverTest.php +++ b/tests/BaseDriverTest.php @@ -8,7 +8,7 @@ * * @package Query * @author Timothy J. Warren - * @copyright 2012 - 2019 Timothy J. Warren + * @copyright 2012 - 2020 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License * @link https://git.timshomepage.net/aviat/Query * @version 3.0.0 diff --git a/tests/BaseQueryBuilderTest.php b/tests/BaseQueryBuilderTest.php index 8cd6337..3415a52 100644 --- a/tests/BaseQueryBuilderTest.php +++ b/tests/BaseQueryBuilderTest.php @@ -8,7 +8,7 @@ * * @package Query * @author Timothy J. Warren - * @copyright 2012 - 2019 Timothy J. Warren + * @copyright 2012 - 2020 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License * @link https://git.timshomepage.net/aviat/Query * @version 3.0.0 diff --git a/tests/ConnectionManagerTest.php b/tests/ConnectionManagerTest.php index 1790f83..1bede77 100644 --- a/tests/ConnectionManagerTest.php +++ b/tests/ConnectionManagerTest.php @@ -8,7 +8,7 @@ * * @package Query * @author Timothy J. Warren - * @copyright 2012 - 2019 Timothy J. Warren + * @copyright 2012 - 2020 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License * @link https://git.timshomepage.net/aviat/Query * @version 3.0.0 diff --git a/tests/CoreTest.php b/tests/CoreTest.php index d5baaf0..20f99f1 100644 --- a/tests/CoreTest.php +++ b/tests/CoreTest.php @@ -8,7 +8,7 @@ * * @package Query * @author Timothy J. Warren - * @copyright 2012 - 2019 Timothy J. Warren + * @copyright 2012 - 2020 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License * @link https://git.timshomepage.net/aviat/Query * @version 3.0.0 diff --git a/tests/Drivers/MySQL/MySQLDriverTest.php b/tests/Drivers/MySQL/MySQLDriverTest.php index a5c1f94..552a51b 100644 --- a/tests/Drivers/MySQL/MySQLDriverTest.php +++ b/tests/Drivers/MySQL/MySQLDriverTest.php @@ -8,7 +8,7 @@ * * @package Query * @author Timothy J. Warren - * @copyright 2012 - 2019 Timothy J. Warren + * @copyright 2012 - 2020 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License * @link https://git.timshomepage.net/aviat/Query * @version 3.0.0 diff --git a/tests/Drivers/MySQL/MySQLQueryBuilderTest.php b/tests/Drivers/MySQL/MySQLQueryBuilderTest.php index 87f6a67..b87abc8 100644 --- a/tests/Drivers/MySQL/MySQLQueryBuilderTest.php +++ b/tests/Drivers/MySQL/MySQLQueryBuilderTest.php @@ -8,7 +8,7 @@ * * @package Query * @author Timothy J. Warren - * @copyright 2012 - 2019 Timothy J. Warren + * @copyright 2012 - 2020 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License * @link https://git.timshomepage.net/aviat/Query * @version 3.0.0 diff --git a/tests/Drivers/PgSQL/PgSQLDriverTest.php b/tests/Drivers/PgSQL/PgSQLDriverTest.php index 17f4029..b117e96 100644 --- a/tests/Drivers/PgSQL/PgSQLDriverTest.php +++ b/tests/Drivers/PgSQL/PgSQLDriverTest.php @@ -8,7 +8,7 @@ * * @package Query * @author Timothy J. Warren - * @copyright 2012 - 2019 Timothy J. Warren + * @copyright 2012 - 2020 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License * @link https://git.timshomepage.net/aviat/Query * @version 3.0.0 diff --git a/tests/Drivers/PgSQL/PgSQLQueryBuilderTest.php b/tests/Drivers/PgSQL/PgSQLQueryBuilderTest.php index a732e2f..bec601c 100644 --- a/tests/Drivers/PgSQL/PgSQLQueryBuilderTest.php +++ b/tests/Drivers/PgSQL/PgSQLQueryBuilderTest.php @@ -8,7 +8,7 @@ * * @package Query * @author Timothy J. Warren - * @copyright 2012 - 2019 Timothy J. Warren + * @copyright 2012 - 2020 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License * @link https://git.timshomepage.net/aviat/Query * @version 3.0.0 diff --git a/tests/Drivers/SQLite/SQLiteDriverTest.php b/tests/Drivers/SQLite/SQLiteDriverTest.php index a74bb20..f04ee4c 100644 --- a/tests/Drivers/SQLite/SQLiteDriverTest.php +++ b/tests/Drivers/SQLite/SQLiteDriverTest.php @@ -8,7 +8,7 @@ * * @package Query * @author Timothy J. Warren - * @copyright 2012 - 2019 Timothy J. Warren + * @copyright 2012 - 2020 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License * @link https://git.timshomepage.net/aviat/Query * @version 3.0.0 diff --git a/tests/Drivers/SQLite/SQLiteQueryBuilderTest.php b/tests/Drivers/SQLite/SQLiteQueryBuilderTest.php index 00a6878..9a054c0 100644 --- a/tests/Drivers/SQLite/SQLiteQueryBuilderTest.php +++ b/tests/Drivers/SQLite/SQLiteQueryBuilderTest.php @@ -8,7 +8,7 @@ * * @package Query * @author Timothy J. Warren - * @copyright 2012 - 2019 Timothy J. Warren + * @copyright 2012 - 2020 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License * @link https://git.timshomepage.net/aviat/Query * @version 3.0.0 diff --git a/tests/QueryParserTest.php b/tests/QueryParserTest.php index d7fb4e3..8c4fa81 100644 --- a/tests/QueryParserTest.php +++ b/tests/QueryParserTest.php @@ -8,7 +8,7 @@ * * @package Query * @author Timothy J. Warren - * @copyright 2012 - 2019 Timothy J. Warren + * @copyright 2012 - 2020 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License * @link https://git.timshomepage.net/aviat/Query * @version 3.0.0 diff --git a/tests/TestCase.php b/tests/TestCase.php index 83fb520..353543b 100644 --- a/tests/TestCase.php +++ b/tests/TestCase.php @@ -8,7 +8,7 @@ * * @package Query * @author Timothy J. Warren - * @copyright 2012 - 2019 Timothy J. Warren + * @copyright 2012 - 2020 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License * @link https://git.timshomepage.net/aviat/Query * @version 3.0.0 diff --git a/tests/index.php b/tests/index.php index f8bac45..95c2b51 100644 --- a/tests/index.php +++ b/tests/index.php @@ -8,7 +8,7 @@ * * @package Query * @author Timothy J. Warren - * @copyright 2012 - 2019 Timothy J. Warren + * @copyright 2012 - 2020 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License * @link https://git.timshomepage.net/aviat/Query * @version 3.0.0