diff --git a/CHANGELOG.md b/CHANGELOG.md index 9ec50334..b3314ada 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ CHANGELOG for 0.9.0 RC ====================== +2.4.1 (13.08.2019) +----- +- CS: @invisible renamed to @internal + 2.4.0 (29.07.2019) ----- - added support for composite FKs diff --git a/src/Config/DatabaseConfig.php b/src/Config/DatabaseConfig.php index 0224083d..72d9ccee 100644 --- a/src/Config/DatabaseConfig.php +++ b/src/Config/DatabaseConfig.php @@ -22,7 +22,7 @@ final class DatabaseConfig extends InjectableConfig use AliasTrait; /** - * @invisible + * @internal * @var array */ protected $config = [ diff --git a/src/Schema/AbstractColumn.php b/src/Schema/AbstractColumn.php index 21585670..e9157855 100644 --- a/src/Schema/AbstractColumn.php +++ b/src/Schema/AbstractColumn.php @@ -81,7 +81,7 @@ abstract class AbstractColumn implements ColumnInterface, ElementInterface * Association list between abstract types and native PHP types. Every non listed type will be * converted into string. * - * @invisible + * @internal * * @var array */ @@ -101,7 +101,7 @@ abstract class AbstractColumn implements ColumnInterface, ElementInterface * integer => array('type' => 'int', 'size' => 1), * boolean => array('type' => 'tinyint', 'size' => 1) * - * @invisible + * @internal * * @var array */ @@ -156,7 +156,7 @@ abstract class AbstractColumn implements ColumnInterface, ElementInterface * Reverse mapping is responsible for generating abstact type based on database type and it's * options. Multiple database types can be mapped into one abstract type. * - * @invisible + * @internal * * @var array */ diff --git a/src/Schema/AbstractTable.php b/src/Schema/AbstractTable.php index 2cb51ce7..e14a8502 100644 --- a/src/Schema/AbstractTable.php +++ b/src/Schema/AbstractTable.php @@ -71,7 +71,7 @@ abstract class AbstractTable implements TableInterface, ElementInterface private $prefix = ''; /** - * @invisible + * @internal * * @var DriverInterface */ @@ -80,7 +80,7 @@ abstract class AbstractTable implements TableInterface, ElementInterface /** * Initial table state. * - * @invisible + * @internal * @var State */ protected $initial = null; @@ -88,7 +88,7 @@ abstract class AbstractTable implements TableInterface, ElementInterface /** * Currently defined table state. * - * @invisible + * @internal * @var State */ protected $current = null;