From 6dc9ed0d525d715598020fb03478e1777f8a972f Mon Sep 17 00:00:00 2001 From: "Timothy J. Warren" Date: Thu, 2 Jan 2014 12:36:50 -0500 Subject: [PATCH] Update copyright for the new year --- autoload.php | 4 ++-- classes/db_pdo.php | 4 ++-- classes/db_util.php | 4 ++-- classes/idb_sql.php | 4 ++-- classes/iquery_builder.php | 4 ++-- classes/query_builder.php | 4 ++-- classes/query_parser.php | 4 ++-- common.php | 4 ++-- drivers/firebird/firebird_driver.php | 4 ++-- drivers/firebird/firebird_result.php | 4 ++-- drivers/firebird/firebird_sql.php | 4 ++-- drivers/firebird/firebird_util.php | 4 ++-- drivers/mysql/mysql_driver.php | 4 ++-- drivers/mysql/mysql_sql.php | 4 ++-- drivers/mysql/mysql_util.php | 4 ++-- drivers/odbc/odbc_driver.php | 4 ++-- drivers/odbc/odbc_sql.php | 4 ++-- drivers/odbc/odbc_util.php | 4 ++-- drivers/pgsql/pgsql_driver.php | 4 ++-- drivers/pgsql/pgsql_sql.php | 4 ++-- drivers/pgsql/pgsql_util.php | 4 ++-- drivers/sqlite/sqlite_driver.php | 4 ++-- drivers/sqlite/sqlite_sql.php | 4 ++-- drivers/sqlite/sqlite_util.php | 4 ++-- 24 files changed, 48 insertions(+), 48 deletions(-) diff --git a/autoload.php b/autoload.php index da16cfd..7507aed 100644 --- a/autoload.php +++ b/autoload.php @@ -6,7 +6,7 @@ * * @package Query * @author Timothy J. Warren - * @copyright Copyright (c) 2012 - 2013 + * @copyright Copyright (c) 2012 - 2014 * @link https://github.com/aviat4ion/Query * @license http://philsturgeon.co.uk/code/dbad-license */ @@ -66,4 +66,4 @@ function query_autoload($class) // Set up autoloader spl_autoload_register('query_autoload'); -// End of autoload.php \ No newline at end of file +// End of autoload.php diff --git a/classes/db_pdo.php b/classes/db_pdo.php index c7452f1..2bf7ac4 100644 --- a/classes/db_pdo.php +++ b/classes/db_pdo.php @@ -6,7 +6,7 @@ * * @package Query * @author Timothy J. Warren - * @copyright Copyright (c) 2012 - 2013 + * @copyright Copyright (c) 2012 - 2014 * @link https://github.com/aviat4ion/Query * @license http://philsturgeon.co.uk/code/dbad-license */ @@ -552,4 +552,4 @@ abstract class DB_PDO extends PDO { return array($sql, $vals); } } -// End of db_pdo.php \ No newline at end of file +// End of db_pdo.php diff --git a/classes/db_util.php b/classes/db_util.php index dd8b07f..c88d57a 100644 --- a/classes/db_util.php +++ b/classes/db_util.php @@ -6,7 +6,7 @@ * * @package Query * @author Timothy J. Warren - * @copyright Copyright (c) 2012 - 2013 + * @copyright Copyright (c) 2012 - 2014 * @link https://github.com/aviat4ion/Query * @license http://philsturgeon.co.uk/code/dbad-license */ @@ -96,4 +96,4 @@ abstract class DB_Util { abstract public function backup_data(); } -// End of db_util.php \ No newline at end of file +// End of db_util.php diff --git a/classes/idb_sql.php b/classes/idb_sql.php index 9fd1d04..0e63ca9 100644 --- a/classes/idb_sql.php +++ b/classes/idb_sql.php @@ -5,7 +5,7 @@ * Free Query Builder / Database Abstraction Layer * * @author Timothy J. Warren - * @copyright Copyright (c) 2012 - 2013 + * @copyright Copyright (c) 2012 - 2014 * @link https://github.com/aviat4ion/Query * @license http://philsturgeon.co.uk/code/dbad-license * @package Query @@ -113,4 +113,4 @@ interface iDB_SQL { public function column_list($table); } -// End of db_sql.php \ No newline at end of file +// End of db_sql.php diff --git a/classes/iquery_builder.php b/classes/iquery_builder.php index 2c32793..91cbe04 100644 --- a/classes/iquery_builder.php +++ b/classes/iquery_builder.php @@ -6,7 +6,7 @@ * * @package Query * @author Timothy J. Warren - * @copyright Copyright (c) 2012 - 2013 + * @copyright Copyright (c) 2012 - 2014 * @link https://github.com/aviat4ion/Query * @license http://philsturgeon.co.uk/code/dbad-license */ @@ -477,4 +477,4 @@ interface iQuery_Builder { public function reset_query(); } -// End of iquery_builder.php \ No newline at end of file +// End of iquery_builder.php diff --git a/classes/query_builder.php b/classes/query_builder.php index f07fd79..574aec6 100644 --- a/classes/query_builder.php +++ b/classes/query_builder.php @@ -6,7 +6,7 @@ * * @package Query * @author Timothy J. Warren - * @copyright Copyright (c) 2012 - 2013 + * @copyright Copyright (c) 2012 - 2014 * @link https://github.com/aviat4ion/Query * @license http://philsturgeon.co.uk/code/dbad-license */ @@ -1386,4 +1386,4 @@ class Query_Builder implements iQuery_Builder { return $sql; } } -// End of query_builder.php \ No newline at end of file +// End of query_builder.php diff --git a/classes/query_parser.php b/classes/query_parser.php index 2a1c1df..1b7dc69 100644 --- a/classes/query_parser.php +++ b/classes/query_parser.php @@ -6,7 +6,7 @@ * * @package Query * @author Timothy J. Warren - * @copyright Copyright (c) 2012 - 2013 + * @copyright Copyright (c) 2012 - 2014 * @link https://github.com/aviat4ion/Query * @license http://philsturgeon.co.uk/code/dbad-license */ @@ -106,4 +106,4 @@ class Query_Parser { } -// End of query_parser.php \ No newline at end of file +// End of query_parser.php diff --git a/common.php b/common.php index 6590b12..5171dc2 100644 --- a/common.php +++ b/common.php @@ -6,7 +6,7 @@ * * @package Query * @author Timothy J. Warren - * @copyright Copyright (c) 2012 - 2013 + * @copyright Copyright (c) 2012 - 2014 * @link https://github.com/aviat4ion/Query * @license http://philsturgeon.co.uk/code/dbad-license */ @@ -209,4 +209,4 @@ function Query($params = '') return $conn; } -// End of common.php \ No newline at end of file +// End of common.php diff --git a/drivers/firebird/firebird_driver.php b/drivers/firebird/firebird_driver.php index d12cdc7..ab1c1ed 100644 --- a/drivers/firebird/firebird_driver.php +++ b/drivers/firebird/firebird_driver.php @@ -6,7 +6,7 @@ * * @package Query * @author Timothy J. Warren - * @copyright Copyright (c) 2012 - 2013 + * @copyright Copyright (c) 2012 - 2014 * @link https://github.com/aviat4ion/Query * @license http://philsturgeon.co.uk/code/dbad-license */ @@ -284,4 +284,4 @@ class Firebird extends DB_PDO { return NULL; } } -// End of firebird_driver.php \ No newline at end of file +// End of firebird_driver.php diff --git a/drivers/firebird/firebird_result.php b/drivers/firebird/firebird_result.php index d5fbe77..095a53e 100644 --- a/drivers/firebird/firebird_result.php +++ b/drivers/firebird/firebird_result.php @@ -6,7 +6,7 @@ * * @package Query * @author Timothy J. Warren - * @copyright Copyright (c) 2012 - 2013 + * @copyright Copyright (c) 2012 - 2014 * @link https://github.com/aviat4ion/Query * @license http://philsturgeon.co.uk/code/dbad-license */ @@ -287,4 +287,4 @@ class Firebird_Result extends PDOStatement { return array(0, $code, $msg); } } -// End of firebird_result.php \ No newline at end of file +// End of firebird_result.php diff --git a/drivers/firebird/firebird_sql.php b/drivers/firebird/firebird_sql.php index dd89957..a07f087 100644 --- a/drivers/firebird/firebird_sql.php +++ b/drivers/firebird/firebird_sql.php @@ -6,7 +6,7 @@ * * @package Query * @author Timothy J. Warren - * @copyright Copyright (c) 2012 - 2013 + * @copyright Copyright (c) 2012 - 2014 * @link https://github.com/aviat4ion/Query * @license http://philsturgeon.co.uk/code/dbad-license */ @@ -255,4 +255,4 @@ SQL; } } -//End of firebird_sql.php \ No newline at end of file +//End of firebird_sql.php diff --git a/drivers/firebird/firebird_util.php b/drivers/firebird/firebird_util.php index 744bed4..b6db304 100644 --- a/drivers/firebird/firebird_util.php +++ b/drivers/firebird/firebird_util.php @@ -6,7 +6,7 @@ * * @package Query * @author Timothy J. Warren - * @copyright Copyright (c) 2012 - 2013 + * @copyright Copyright (c) 2012 - 2014 * @link https://github.com/aviat4ion/Query * @license http://philsturgeon.co.uk/code/dbad-license */ @@ -191,4 +191,4 @@ class Firebird_Util extends DB_Util { return $output_sql; } } -// End of firebird_util.php \ No newline at end of file +// End of firebird_util.php diff --git a/drivers/mysql/mysql_driver.php b/drivers/mysql/mysql_driver.php index ff8cf67..457d2b3 100644 --- a/drivers/mysql/mysql_driver.php +++ b/drivers/mysql/mysql_driver.php @@ -6,7 +6,7 @@ * * @package Query * @author Timothy J. Warren - * @copyright Copyright (c) 2012 - 2013 + * @copyright Copyright (c) 2012 - 2014 * @link https://github.com/aviat4ion/Query * @license http://philsturgeon.co.uk/code/dbad-license */ @@ -65,4 +65,4 @@ class MySQL extends DB_PDO { $this->query("TRUNCATE `{$table}`"); } } -//End of mysql_driver.php \ No newline at end of file +//End of mysql_driver.php diff --git a/drivers/mysql/mysql_sql.php b/drivers/mysql/mysql_sql.php index ea61f6a..c25c114 100644 --- a/drivers/mysql/mysql_sql.php +++ b/drivers/mysql/mysql_sql.php @@ -6,7 +6,7 @@ * * @package Query * @author Timothy J. Warren - * @copyright Copyright (c) 2012 - 2013 + * @copyright Copyright (c) 2012 - 2014 * @link https://github.com/aviat4ion/Query * @license http://philsturgeon.co.uk/code/dbad-license */ @@ -178,4 +178,4 @@ class MySQL_SQL implements iDB_SQL { return "SHOW FULL COLUMNS FROM {$table}"; } } -//End of mysql_sql.php \ No newline at end of file +//End of mysql_sql.php diff --git a/drivers/mysql/mysql_util.php b/drivers/mysql/mysql_util.php index 8d08a7b..f19a06e 100644 --- a/drivers/mysql/mysql_util.php +++ b/drivers/mysql/mysql_util.php @@ -6,7 +6,7 @@ * * @package Query * @author Timothy J. Warren - * @copyright Copyright (c) 2012 - 2013 + * @copyright Copyright (c) 2012 - 2014 * @link https://github.com/aviat4ion/Query * @license http://philsturgeon.co.uk/code/dbad-license */ @@ -214,4 +214,4 @@ class MySQL_Util extends DB_Util { return $output_sql; } } -// End of mysql_util.php \ No newline at end of file +// End of mysql_util.php diff --git a/drivers/odbc/odbc_driver.php b/drivers/odbc/odbc_driver.php index fabe90f..487c65a 100644 --- a/drivers/odbc/odbc_driver.php +++ b/drivers/odbc/odbc_driver.php @@ -6,7 +6,7 @@ * * @package Query * @author Timothy J. Warren - * @copyright Copyright (c) 2012 - 2013 + * @copyright Copyright (c) 2012 - 2014 * @link https://github.com/aviat4ion/Query * @license http://philsturgeon.co.uk/code/dbad-license */ @@ -70,4 +70,4 @@ class ODBC extends DB_PDO { return NULL; } } -// End of odbc_driver.php \ No newline at end of file +// End of odbc_driver.php diff --git a/drivers/odbc/odbc_sql.php b/drivers/odbc/odbc_sql.php index 295840f..d4d88a6 100644 --- a/drivers/odbc/odbc_sql.php +++ b/drivers/odbc/odbc_sql.php @@ -6,7 +6,7 @@ * * @package Query * @author Timothy J. Warren - * @copyright Copyright (c) 2012 - 2013 + * @copyright Copyright (c) 2012 - 2014 * @link https://github.com/aviat4ion/Query * @license http://philsturgeon.co.uk/code/dbad-license */ @@ -168,4 +168,4 @@ class ODBC_SQL implements iDB_SQL { } } -// End of odbc_sql.php \ No newline at end of file +// End of odbc_sql.php diff --git a/drivers/odbc/odbc_util.php b/drivers/odbc/odbc_util.php index a18c1b8..0e4a029 100644 --- a/drivers/odbc/odbc_util.php +++ b/drivers/odbc/odbc_util.php @@ -6,7 +6,7 @@ * * @package Query * @author Timothy J. Warren - * @copyright Copyright (c) 2012 - 2013 + * @copyright Copyright (c) 2012 - 2014 * @link https://github.com/aviat4ion/Query * @license http://philsturgeon.co.uk/code/dbad-license */ @@ -88,4 +88,4 @@ class ODBC_Util extends DB_Util { return ''; } } -// End of ODBC_util.php \ No newline at end of file +// End of ODBC_util.php diff --git a/drivers/pgsql/pgsql_driver.php b/drivers/pgsql/pgsql_driver.php index c81f00d..a16610e 100644 --- a/drivers/pgsql/pgsql_driver.php +++ b/drivers/pgsql/pgsql_driver.php @@ -6,7 +6,7 @@ * * @package Query * @author Timothy J. Warren - * @copyright Copyright (c) 2012 - 2013 + * @copyright Copyright (c) 2012 - 2014 * @link https://github.com/aviat4ion/Query * @license http://philsturgeon.co.uk/code/dbad-license */ @@ -70,4 +70,4 @@ SQL; return $this->driver_query($sql); } } -//End of pgsql_driver.php \ No newline at end of file +//End of pgsql_driver.php diff --git a/drivers/pgsql/pgsql_sql.php b/drivers/pgsql/pgsql_sql.php index 701ddbc..2f6851f 100644 --- a/drivers/pgsql/pgsql_sql.php +++ b/drivers/pgsql/pgsql_sql.php @@ -5,7 +5,7 @@ * Free Query Builder / Database Abstraction Layer * * @author Timothy J. Warren - * @copyright Copyright (c) 2012 - 2013 + * @copyright Copyright (c) 2012 - 2014 * @link https://github.com/aviat4ion/Query * @license http://philsturgeon.co.uk/code/dbad-license */ @@ -227,4 +227,4 @@ SQL; SQL; } } -//End of pgsql_manip.php \ No newline at end of file +//End of pgsql_manip.php diff --git a/drivers/pgsql/pgsql_util.php b/drivers/pgsql/pgsql_util.php index 58c58bd..4c28558 100644 --- a/drivers/pgsql/pgsql_util.php +++ b/drivers/pgsql/pgsql_util.php @@ -6,7 +6,7 @@ * * @package Query * @author Timothy J. Warren - * @copyright Copyright (c) 2012 - 2013 + * @copyright Copyright (c) 2012 - 2014 * @link https://github.com/aviat4ion/Query * @license http://philsturgeon.co.uk/code/dbad-license */ @@ -177,4 +177,4 @@ class PgSQL_Util extends DB_Util { return $output_sql; } } -// End of pgsql_util.php \ No newline at end of file +// End of pgsql_util.php diff --git a/drivers/sqlite/sqlite_driver.php b/drivers/sqlite/sqlite_driver.php index ff373ea..3723680 100644 --- a/drivers/sqlite/sqlite_driver.php +++ b/drivers/sqlite/sqlite_driver.php @@ -6,7 +6,7 @@ * * @package Query * @author Timothy J. Warren - * @copyright Copyright (c) 2012 - 2013 + * @copyright Copyright (c) 2012 - 2014 * @link https://github.com/aviat4ion/Query * @license http://philsturgeon.co.uk/code/dbad-license */ @@ -136,4 +136,4 @@ class SQLite extends DB_PDO { return NULL; } } -//End of sqlite_driver.php \ No newline at end of file +//End of sqlite_driver.php diff --git a/drivers/sqlite/sqlite_sql.php b/drivers/sqlite/sqlite_sql.php index 68c82fe..b10a467 100644 --- a/drivers/sqlite/sqlite_sql.php +++ b/drivers/sqlite/sqlite_sql.php @@ -6,7 +6,7 @@ * * @package Query * @author Timothy J. Warren - * @copyright Copyright (c) 2012 - 2013 + * @copyright Copyright (c) 2012 - 2014 * @link https://github.com/aviat4ion/Query * @license http://philsturgeon.co.uk/code/dbad-license */ @@ -180,4 +180,4 @@ SQL; } } -//End of sqlite_sql.php \ No newline at end of file +//End of sqlite_sql.php diff --git a/drivers/sqlite/sqlite_util.php b/drivers/sqlite/sqlite_util.php index ea63984..8765794 100644 --- a/drivers/sqlite/sqlite_util.php +++ b/drivers/sqlite/sqlite_util.php @@ -6,7 +6,7 @@ * * @package Query * @author Timothy J. Warren - * @copyright Copyright (c) 2012 - 2013 + * @copyright Copyright (c) 2012 - 2014 * @link https://github.com/aviat4ion/Query * @license http://philsturgeon.co.uk/code/dbad-license */ @@ -195,4 +195,4 @@ class SQLite_Util extends DB_Util { return $sql_structure; } } -// End of sqlite_util.php \ No newline at end of file +// End of sqlite_util.php