Skip to content

Commit

Permalink
4.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgecc-business-account committed Mar 2, 2024
1 parent 05f2241 commit 71ac512
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1863,6 +1863,8 @@ In a nutshell:
>
> Every decimal version means that it patches/fixes/refactoring a previous functionality i.e. 1.5.0 -> 1.5.1 (fix)
* 4.6.2 2024-03-02
* [fix]PdoOne::$cacheService is now mixed.
* 4.6.1 2024-03-02
* [fix]PdoOne::$instance is null by default (instead of undefined)
* updated CliOne dependency.
Expand Down
8 changes: 4 additions & 4 deletions lib/PdoOne.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@
* @package eftec
* @author Jorge Castro Castillo
* @copyright (c) Jorge Castro C. Dual Licence: MIT and Commercial License https://github.com/EFTEC/PdoOne
* @version 4.6
* @version 4.6.2
*/
class PdoOne
{
public const VERSION = '4.6';
public const VERSION = '4.6.2';
/** @var int We need this value because null and false could be a valid value. */
public const NULL = PHP_INT_MAX;
/** @var string Prefix of the related columns. It is used for ORM */
Expand Down Expand Up @@ -171,8 +171,8 @@ class PdoOne
public int $affected_rows = 0;
/** @var PdoOne_IExt */
public PdoOne_IExt $service;
/** @var IPdoOneCache|null The service of cache [optional] */
public ?IPdoOneCache $cacheService;
/** @var mixed The service of cache [optional] */
public $cacheService;
/** @var null|array it stores the values obtained by $this->tableDependency() */
public ?array $tableDependencyArrayCol=null;
public ?array $tableDependencyArray=null;
Expand Down

0 comments on commit 71ac512

Please sign in to comment.