Skip to content

Commit

Permalink
Change ColumnFactory to AbstractColumnFactory
Browse files Browse the repository at this point in the history
  • Loading branch information
Tigrov committed Aug 27, 2024
1 parent 29c89fe commit 919bd92
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
- Chg #272: Replace call of `SchemaInterface::getRawTableName()` to `QuoterInterface::getRawTableName()` (@Tigrov)
- Enh #275: Refactor PHP type of `ColumnSchemaInterface` instances (@Tigrov)
- Enh #277: Raise minimum PHP version to `^8.1` with minor refactoring (@Tigrov)
- Enh #276: Implement `ColumnFactory` class (@Tigrov)

## 1.3.0 March 21, 2024

Expand Down
6 changes: 5 additions & 1 deletion src/Column/ColumnFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,14 @@

namespace Yiisoft\Db\Oracle\Column;

use Yiisoft\Db\Schema\Column\AbstractColumnFactory;
use Yiisoft\Db\Schema\Column\ColumnSchemaInterface;
use Yiisoft\Db\Schema\SchemaInterface;

class ColumnFactory extends \Yiisoft\Db\Schema\Column\ColumnFactory
use function preg_replace;
use function strtolower;

class ColumnFactory extends AbstractColumnFactory
{
/**
* The mapping from physical column types (keys) to abstract column types (values).
Expand Down

0 comments on commit 919bd92

Please sign in to comment.