Skip to content
This repository has been archived by the owner on Jan 24, 2024. It is now read-only.

Commit

Permalink
- CS: @invisible renamed to @internal
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfy-j committed Aug 13, 2019
1 parent 0931137 commit f22600a
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/Config/DatabaseConfig.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ final class DatabaseConfig extends InjectableConfig
use AliasTrait;

/**
* @invisible
* @internal
* @var array
*/
protected $config = [
Expand Down
6 changes: 3 additions & 3 deletions src/Schema/AbstractColumn.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
*/
Expand All @@ -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
*/
Expand Down Expand Up @@ -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
*/
Expand Down
6 changes: 3 additions & 3 deletions src/Schema/AbstractTable.php
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ abstract class AbstractTable implements TableInterface, ElementInterface
private $prefix = '';

/**
* @invisible
* @internal
*
* @var DriverInterface
*/
Expand All @@ -80,15 +80,15 @@ abstract class AbstractTable implements TableInterface, ElementInterface
/**
* Initial table state.
*
* @invisible
* @internal
* @var State
*/
protected $initial = null;

/**
* Currently defined table state.
*
* @invisible
* @internal
* @var State
*/
protected $current = null;
Expand Down

0 comments on commit f22600a

Please sign in to comment.