From bfd5a8587ba6fb492d55a6bbfc907ea9aa7dface Mon Sep 17 00:00:00 2001 From: kristuff Date: Sun, 13 Jun 2021 11:39:09 +0200 Subject: [PATCH 1/4] v1.0 --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e63748e..f49de15 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file. ### Changed - **Possible break change** PHP Strict types. -- New `DatabaseDriver::isForeignKeyEnabled()` method (`bool`) added for compatibility (implemented on sqlite, returns true by other drivers as there is now way to disable FK). +- New `DatabaseDriver::isForeignKeyEnabled()` method (`bool`) added for compatibility (implemented on sqlite, returns true by other drivers as there is no way to disable FK). ## [v0.5] - 2020-10-08 From caf6dc4cab4d09f79132b17f9bfbff6f024281a1 Mon Sep 17 00:00:00 2001 From: kristuff Date: Thu, 23 Sep 2021 21:36:45 +0200 Subject: [PATCH 2/4] Update travis link and run test on PHP 8.0 --- .travis.yml | 1 + README.md | 3 +-- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index d5a3ed2..08dc6f7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,6 +7,7 @@ php: - '7.2' - '7.3' - '7.4' + - '8.0' services: - mysql diff --git a/README.md b/README.md index 43bc072..1a8f1dd 100644 --- a/README.md +++ b/README.md @@ -4,10 +4,9 @@ A database/server SQL query builder for PHP. -[![Codacy Badge](https://api.codacy.com/project/badge/Grade/398308d1225049f58ae583065608c460)](https://www.codacy.com/app/kristuff_/patabase?utm_source=github.com&utm_medium=referral&utm_content=kristuff/patabase&utm_campaign=Badge_Grade) [![Code Climate](https://codeclimate.com/github/kristuff/patabase/badges/gpa.svg)](https://codeclimate.com/github/kristuff/patabase) [![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/kristuff/patabase/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/kristuff/patabase/?branch=master) -[![Build Status](https://travis-ci.org/kristuff/patabase.svg?branch=master)](https://travis-ci.org/kristuff/patabase) +[![Build Status](https://travis-ci.com/kristuff/patabase.svg?branch=master)](https://travis-ci.com/kristuff/patabase) [![codecov](https://codecov.io/gh/kristuff/patabase/branch/master/graph/badge.svg)](https://codecov.io/gh/kristuff/patabase) [![Latest Stable Version](https://poser.pugx.org/kristuff/patabase/v/stable)](https://packagist.org/packages/kristuff/patabase) [![License](https://poser.pugx.org/kristuff/patabase/license)](https://packagist.org/packages/kristuff/patabase) From 3c494d09d53ee88187b61a66b9c80ccac98897ca Mon Sep 17 00:00:00 2001 From: kristuff Date: Thu, 23 Sep 2021 21:38:03 +0200 Subject: [PATCH 3/4] Formatting, fix doc --- lib/Database.php | 2 +- lib/Query/CreateTable.php | 1 - lib/Query/InsertBase.php | 7 ++----- lib/Query/QueryFilter.php | 2 +- lib/Server.php | 3 ++- lib/Table.php | 4 ++-- 6 files changed, 8 insertions(+), 11 deletions(-) diff --git a/lib/Database.php b/lib/Database.php index e878d62..b89c351 100644 --- a/lib/Database.php +++ b/lib/Database.php @@ -235,7 +235,7 @@ public function update(string $tableName): Update * @access public * @param string $tableName The name of the table * - * @return Query\Table\Delete + * @return Query\Delete */ public function delete(string $tableName): Delete { diff --git a/lib/Query/CreateTable.php b/lib/Query/CreateTable.php index 0503387..3c75335 100644 --- a/lib/Query/CreateTable.php +++ b/lib/Query/CreateTable.php @@ -97,7 +97,6 @@ public function ifNotExists() * Add a column to the list of column definition * * @access public - * @param mixed column definition * * @return $this */ diff --git a/lib/Query/InsertBase.php b/lib/Query/InsertBase.php index 7fcfcd3..847ce55 100644 --- a/lib/Query/InsertBase.php +++ b/lib/Query/InsertBase.php @@ -18,9 +18,6 @@ namespace Kristuff\Patabase\Query; -use Kristuff\Patabase; -use Kristuff\Patabase\Database; -use Kristuff\Patabase\Query; use Kristuff\Patabase\Query\QueryBuilder; use Kristuff\Patabase\Driver\DatabaseDriver; @@ -44,8 +41,8 @@ abstract class InsertBase extends QueryBuilder * Constructor * * @access public - * @param Driver\DatabaseDriver $driver The driver instance - * @param string $tableName The table name + * @param DatabaseDriver $driver The driver instance + * @param string $tableName The table name */ public function __construct(DatabaseDriver $driver, $tableName) { diff --git a/lib/Query/QueryFilter.php b/lib/Query/QueryFilter.php index 1dde8c6..f2be35c 100644 --- a/lib/Query/QueryFilter.php +++ b/lib/Query/QueryFilter.php @@ -148,7 +148,7 @@ public function beginOr() * Close OR group condition * * @access public - * @return $this + * @return QueryBuilder */ public function closeOr() { diff --git a/lib/Server.php b/lib/Server.php index 86a3713..e0c232a 100644 --- a/lib/Server.php +++ b/lib/Server.php @@ -18,8 +18,9 @@ namespace Kristuff\Patabase; -use Kristuff\Patabase\Driver; use Kristuff\Patabase\Datasource; +use Kristuff\Patabase\Driver; +use Kristuff\Patabase\Driver\ServerDriver; /** * Class Server diff --git a/lib/Table.php b/lib/Table.php index ff70f11..3172218 100644 --- a/lib/Table.php +++ b/lib/Table.php @@ -71,7 +71,7 @@ public function name(): string * Get a new Select query instance * * @access public - * @param array|string(s) (optional) Column name(s), array of columns name / alias + * @param array|string(s) $columns (optional) Column name(s), array of columns name / alias * * @return Select */ @@ -164,7 +164,7 @@ public function drop(): bool * Rename the table * * @access public - * @param string $newName The new table name + * @param string $newName The new table name * * @return bool True if the table has been renamed, otherwise false. */ From 91b6b08be829b70ac122fbfdac8e40e44e49da6e Mon Sep 17 00:00:00 2001 From: kristuff Date: Fri, 8 Apr 2022 23:18:46 +0200 Subject: [PATCH 4/4] v1.0.1 Add missing return type to `closeOr` in `QueryFilter` like for `closeAnd` to prevent notice in editor --- LICENSE | 2 +- README.md | 5 ++--- lib/Constants.php | 4 ++-- lib/Database.php | 4 ++-- lib/Datasource.php | 4 ++-- lib/Driver/DatabaseDriver.php | 4 ++-- lib/Driver/DriverFactory.php | 4 ++-- lib/Driver/Mysql/MysqlDriver.php | 4 ++-- lib/Driver/Postgres/PostgresDriver.php | 4 ++-- lib/Driver/ServerDriver.php | 4 ++-- lib/Driver/Sqlite/SqliteDatabase.php | 4 ++-- lib/Driver/Sqlite/SqliteDriver.php | 4 ++-- lib/Exception/InvalidArgException.php | 4 ++-- lib/Exception/MissingArgException.php | 4 ++-- lib/Exception/PatabaseException.php | 4 ++-- lib/Output.php | 4 ++-- lib/Query/CreateTable.php | 4 ++-- lib/Query/Delete.php | 4 ++-- lib/Query/Having.php | 4 ++-- lib/Query/Insert.php | 4 ++-- lib/Query/InsertBase.php | 4 ++-- lib/Query/QueryBase.php | 4 ++-- lib/Query/QueryBuilder.php | 4 ++-- lib/Query/QueryFilter.php | 6 +++--- lib/Query/Select.php | 4 ++-- lib/Query/SelectBase.php | 4 ++-- lib/Query/Update.php | 4 ++-- lib/Query/Where.php | 4 ++-- lib/Server.php | 4 ++-- lib/SqlException.php | 4 ++-- lib/Table.php | 4 ++-- 31 files changed, 62 insertions(+), 63 deletions(-) diff --git a/LICENSE b/LICENSE index 7f3bcd6..784963a 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) 2017-2021 Kristuff +Copyright (c) 2017-2022 Christophe Buliard Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index 1a8f1dd..ab3444c 100644 --- a/README.md +++ b/README.md @@ -4,9 +4,8 @@ A database/server SQL query builder for PHP. -[![Code Climate](https://codeclimate.com/github/kristuff/patabase/badges/gpa.svg)](https://codeclimate.com/github/kristuff/patabase) -[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/kristuff/patabase/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/kristuff/patabase/?branch=master) [![Build Status](https://travis-ci.com/kristuff/patabase.svg?branch=master)](https://travis-ci.com/kristuff/patabase) +[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/kristuff/patabase/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/kristuff/patabase/?branch=master) [![codecov](https://codecov.io/gh/kristuff/patabase/branch/master/graph/badge.svg)](https://codecov.io/gh/kristuff/patabase) [![Latest Stable Version](https://poser.pugx.org/kristuff/patabase/v/stable)](https://packagist.org/packages/kristuff/patabase) [![License](https://poser.pugx.org/kristuff/patabase/license)](https://packagist.org/packages/kristuff/patabase) @@ -93,7 +92,7 @@ License The MIT License (MIT) -Copyright (c) 2017-2021 Kristuff +Copyright (c) 2017-2022 Christophe Buliard Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/lib/Constants.php b/lib/Constants.php index 701f45f..0c69c71 100644 --- a/lib/Constants.php +++ b/lib/Constants.php @@ -12,8 +12,8 @@ * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. * - * @version 1.0.0 - * @copyright 2017-2021 Kristuff + * @version 1.0.1 + * @copyright 2017-2022 Christophe Buliard */ namespace Kristuff\Patabase; diff --git a/lib/Database.php b/lib/Database.php index b89c351..6941c38 100644 --- a/lib/Database.php +++ b/lib/Database.php @@ -12,8 +12,8 @@ * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. * - * @version 1.0.0 - * @copyright 2017-2021 Kristuff + * @version 1.0.1 + * @copyright 2017-2022 Christophe Buliard */ namespace Kristuff\Patabase; diff --git a/lib/Datasource.php b/lib/Datasource.php index 7b40a39..bf73b94 100644 --- a/lib/Datasource.php +++ b/lib/Datasource.php @@ -12,8 +12,8 @@ * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. * - * @version 1.0.0 - * @copyright 2017-2021 Kristuff + * @version 1.0.1 + * @copyright 2017-2022 Christophe Buliard */ namespace Kristuff\Patabase; diff --git a/lib/Driver/DatabaseDriver.php b/lib/Driver/DatabaseDriver.php index def3386..1b075f1 100644 --- a/lib/Driver/DatabaseDriver.php +++ b/lib/Driver/DatabaseDriver.php @@ -12,8 +12,8 @@ * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. * - * @version 1.0.0 - * @copyright 2017-2021 Kristuff + * @version 1.0.1 + * @copyright 2017-2022 Christophe Buliard */ namespace Kristuff\Patabase\Driver; diff --git a/lib/Driver/DriverFactory.php b/lib/Driver/DriverFactory.php index 6b09c68..518a63d 100644 --- a/lib/Driver/DriverFactory.php +++ b/lib/Driver/DriverFactory.php @@ -12,8 +12,8 @@ * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. * - * @version 1.0.0 - * @copyright 2017-2021 Kristuff + * @version 1.0.1 + * @copyright 2017-2022 Christophe Buliard */ namespace Kristuff\Patabase\Driver; diff --git a/lib/Driver/Mysql/MysqlDriver.php b/lib/Driver/Mysql/MysqlDriver.php index 9a17ea4..ddc0308 100644 --- a/lib/Driver/Mysql/MysqlDriver.php +++ b/lib/Driver/Mysql/MysqlDriver.php @@ -12,8 +12,8 @@ * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. * - * @version 1.0.0 - * @copyright 2017-2021 Kristuff + * @version 1.0.1 + * @copyright 2017-2022 Christophe Buliard */ namespace Kristuff\Patabase\Driver\Mysql; diff --git a/lib/Driver/Postgres/PostgresDriver.php b/lib/Driver/Postgres/PostgresDriver.php index e0bfd06..7cd3733 100644 --- a/lib/Driver/Postgres/PostgresDriver.php +++ b/lib/Driver/Postgres/PostgresDriver.php @@ -12,8 +12,8 @@ * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. * - * @version 1.0.0 - * @copyright 2017-2021 Kristuff + * @version 1.0.1 + * @copyright 2017-2022 Christophe Buliard */ namespace Kristuff\Patabase\Driver\Postgres; diff --git a/lib/Driver/ServerDriver.php b/lib/Driver/ServerDriver.php index 612b198..edfc421 100644 --- a/lib/Driver/ServerDriver.php +++ b/lib/Driver/ServerDriver.php @@ -12,8 +12,8 @@ * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. * - * @version 1.0.0 - * @copyright 2017-2021 Kristuff + * @version 1.0.1 + * @copyright 2017-2022 Christophe Buliard */ namespace Kristuff\Patabase\Driver; diff --git a/lib/Driver/Sqlite/SqliteDatabase.php b/lib/Driver/Sqlite/SqliteDatabase.php index a28ae96..282200e 100644 --- a/lib/Driver/Sqlite/SqliteDatabase.php +++ b/lib/Driver/Sqlite/SqliteDatabase.php @@ -12,8 +12,8 @@ * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. * - * @version 1.0.0 - * @copyright 2017-2021 Kristuff + * @version 1.0.1 + * @copyright 2017-2022 Christophe Buliard */ namespace Kristuff\Patabase\Driver\Sqlite; diff --git a/lib/Driver/Sqlite/SqliteDriver.php b/lib/Driver/Sqlite/SqliteDriver.php index a758d75..20a90b2 100644 --- a/lib/Driver/Sqlite/SqliteDriver.php +++ b/lib/Driver/Sqlite/SqliteDriver.php @@ -12,8 +12,8 @@ * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. * - * @version 1.0.0 - * @copyright 2017-2021 Kristuff + * @version 1.0.1 + * @copyright 2017-2022 Christophe Buliard */ namespace Kristuff\Patabase\Driver\Sqlite; diff --git a/lib/Exception/InvalidArgException.php b/lib/Exception/InvalidArgException.php index 4019d51..0508c26 100644 --- a/lib/Exception/InvalidArgException.php +++ b/lib/Exception/InvalidArgException.php @@ -12,8 +12,8 @@ * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. * - * @version 1.0.0 - * @copyright 2017-2021 Kristuff + * @version 1.0.1 + * @copyright 2017-2022 Christophe Buliard */ namespace Kristuff\Patabase\Exception; diff --git a/lib/Exception/MissingArgException.php b/lib/Exception/MissingArgException.php index 028e099..763504c 100644 --- a/lib/Exception/MissingArgException.php +++ b/lib/Exception/MissingArgException.php @@ -12,8 +12,8 @@ * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. * - * @version 1.0.0 - * @copyright 2017-2021 Kristuff + * @version 1.0.1 + * @copyright 2017-2022 Christophe Buliard */ namespace Kristuff\Patabase\Exception; diff --git a/lib/Exception/PatabaseException.php b/lib/Exception/PatabaseException.php index ae2f296..b6cb58e 100644 --- a/lib/Exception/PatabaseException.php +++ b/lib/Exception/PatabaseException.php @@ -12,8 +12,8 @@ * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. * - * @version 1.0.0 - * @copyright 2017-2021 Kristuff + * @version 1.0.1 + * @copyright 2017-2022 Christophe Buliard */ namespace Kristuff\Patabase\Exception; diff --git a/lib/Output.php b/lib/Output.php index 4b6e6b7..4d02ce6 100644 --- a/lib/Output.php +++ b/lib/Output.php @@ -12,8 +12,8 @@ * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. * - * @version 1.0.0 - * @copyright 2017-2021 Kristuff + * @version 1.0.1 + * @copyright 2017-2022 Christophe Buliard */ namespace Kristuff\Patabase; diff --git a/lib/Query/CreateTable.php b/lib/Query/CreateTable.php index 3c75335..f7135cb 100644 --- a/lib/Query/CreateTable.php +++ b/lib/Query/CreateTable.php @@ -12,8 +12,8 @@ * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. * - * @version 1.0.0 - * @copyright 2017-2021 Kristuff + * @version 1.0.1 + * @copyright 2017-2022 Christophe Buliard */ namespace Kristuff\Patabase\Query; diff --git a/lib/Query/Delete.php b/lib/Query/Delete.php index 049dbe7..c20fdea 100644 --- a/lib/Query/Delete.php +++ b/lib/Query/Delete.php @@ -12,8 +12,8 @@ * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. * - * @version 1.0.0 - * @copyright 2017-2021 Kristuff + * @version 1.0.1 + * @copyright 2017-2022 Christophe Buliard */ namespace Kristuff\Patabase\Query; diff --git a/lib/Query/Having.php b/lib/Query/Having.php index 5329e4f..20e8699 100644 --- a/lib/Query/Having.php +++ b/lib/Query/Having.php @@ -12,8 +12,8 @@ * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. * - * @version 1.0.0 - * @copyright 2017-2021 Kristuff + * @version 1.0.1 + * @copyright 2017-2022 Christophe Buliard */ namespace Kristuff\Patabase\Query; diff --git a/lib/Query/Insert.php b/lib/Query/Insert.php index 10a55f1..9a1d11e 100644 --- a/lib/Query/Insert.php +++ b/lib/Query/Insert.php @@ -12,8 +12,8 @@ * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. * - * @version 1.0.0 - * @copyright 2017-2021 Kristuff + * @version 1.0.1 + * @copyright 2017-2022 Christophe Buliard */ namespace Kristuff\Patabase\Query; diff --git a/lib/Query/InsertBase.php b/lib/Query/InsertBase.php index 847ce55..ceca51f 100644 --- a/lib/Query/InsertBase.php +++ b/lib/Query/InsertBase.php @@ -12,8 +12,8 @@ * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. * - * @version 1.0.0 - * @copyright 2017-2021 Kristuff + * @version 1.0.1 + * @copyright 2017-2022 Christophe Buliard */ namespace Kristuff\Patabase\Query; diff --git a/lib/Query/QueryBase.php b/lib/Query/QueryBase.php index 5b7e5a3..b56c083 100644 --- a/lib/Query/QueryBase.php +++ b/lib/Query/QueryBase.php @@ -12,8 +12,8 @@ * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. * - * @version 1.0.0 - * @copyright 2017-2021 Kristuff + * @version 1.0.1 + * @copyright 2017-2022 Christophe Buliard */ namespace Kristuff\Patabase\Query; diff --git a/lib/Query/QueryBuilder.php b/lib/Query/QueryBuilder.php index 756ae4e..022ecfc 100644 --- a/lib/Query/QueryBuilder.php +++ b/lib/Query/QueryBuilder.php @@ -12,8 +12,8 @@ * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. * - * @version 1.0.0 - * @copyright 2017-2021 Kristuff + * @version 1.0.1 + * @copyright 2017-2022 Christophe Buliard */ namespace Kristuff\Patabase\Query; diff --git a/lib/Query/QueryFilter.php b/lib/Query/QueryFilter.php index f2be35c..abcebb0 100644 --- a/lib/Query/QueryFilter.php +++ b/lib/Query/QueryFilter.php @@ -12,8 +12,8 @@ * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. * - * @version 1.0.0 - * @copyright 2017-2021 Kristuff + * @version 1.0.1 + * @copyright 2017-2022 Christophe Buliard */ namespace Kristuff\Patabase\Query; @@ -150,7 +150,7 @@ public function beginOr() * @access public * @return QueryBuilder */ - public function closeOr() + public function closeOr(): QueryBuilder { return $this->closeGroup(); } diff --git a/lib/Query/Select.php b/lib/Query/Select.php index c059873..9a374b8 100644 --- a/lib/Query/Select.php +++ b/lib/Query/Select.php @@ -12,8 +12,8 @@ * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. * - * @version 1.0.0 - * @copyright 2017-2021 Kristuff + * @version 1.0.1 + * @copyright 2017-2022 Christophe Buliard */ namespace Kristuff\Patabase\Query; diff --git a/lib/Query/SelectBase.php b/lib/Query/SelectBase.php index 1db0d33..256da23 100644 --- a/lib/Query/SelectBase.php +++ b/lib/Query/SelectBase.php @@ -12,8 +12,8 @@ * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. * - * @version 1.0.0 - * @copyright 2017-2021 Kristuff + * @version 1.0.1 + * @copyright 2017-2022 Christophe Buliard */ namespace Kristuff\Patabase\Query; diff --git a/lib/Query/Update.php b/lib/Query/Update.php index 6fbf318..0b46757 100644 --- a/lib/Query/Update.php +++ b/lib/Query/Update.php @@ -12,8 +12,8 @@ * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. * - * @version 1.0.0 - * @copyright 2017-2021 Kristuff + * @version 1.0.1 + * @copyright 2017-2022 Christophe Buliard */ namespace Kristuff\Patabase\Query; diff --git a/lib/Query/Where.php b/lib/Query/Where.php index 6b7a7ea..86642c7 100644 --- a/lib/Query/Where.php +++ b/lib/Query/Where.php @@ -12,8 +12,8 @@ * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. * - * @version 1.0.0 - * @copyright 2017-2021 Kristuff + * @version 1.0.1 + * @copyright 2017-2022 Christophe Buliard */ namespace Kristuff\Patabase\Query; diff --git a/lib/Server.php b/lib/Server.php index e0c232a..f4b7f88 100644 --- a/lib/Server.php +++ b/lib/Server.php @@ -12,8 +12,8 @@ * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. * - * @version 1.0.0 - * @copyright 2017-2021 Kristuff + * @version 1.0.1 + * @copyright 2017-2022 Christophe Buliard */ namespace Kristuff\Patabase; diff --git a/lib/SqlException.php b/lib/SqlException.php index 3029150..e440cd5 100644 --- a/lib/SqlException.php +++ b/lib/SqlException.php @@ -12,8 +12,8 @@ * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. * - * @version 1.0.0 - * @copyright 2017-2021 Kristuff + * @version 1.0.1 + * @copyright 2017-2022 Christophe Buliard */ namespace Kristuff\Patabase; diff --git a/lib/Table.php b/lib/Table.php index 3172218..a470dd8 100644 --- a/lib/Table.php +++ b/lib/Table.php @@ -12,8 +12,8 @@ * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. * - * @version 1.0.0 - * @copyright 2017-2021 Kristuff + * @version 1.0.1 + * @copyright 2017-2022 Christophe Buliard */ namespace Kristuff\Patabase;