Skip to content

Commit

Permalink
Fixed code-style
Browse files Browse the repository at this point in the history
  • Loading branch information
andrey-helldar committed Mar 13, 2024
1 parent d0599da commit f48a957
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/Console/Migrate.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ class Migrate extends Command

protected $description = 'Data transfer from one database to another';

/** @var \DragonCode\Contracts\MigrateDB\Builder */
/** @var Builder */
protected $source;

/** @var \DragonCode\Contracts\MigrateDB\Builder */
/** @var Builder */
protected $target;

/** @var array */
Expand Down
2 changes: 1 addition & 1 deletion src/Database/Builder.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ abstract class Builder implements BuilderContract
{
use Makeable;

/** @var \Illuminate\Database\Connection */
/** @var Connection */
protected $connection;

abstract protected function tableNameColumn(): string;
Expand Down
2 changes: 1 addition & 1 deletion tests/Connectors/BaseConnection.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ abstract class BaseConnection
{
use Makeable;

/** @var \Tests\Configurations\BaseConfiguration */
/** @var BaseConfiguration */
protected $configuration;

protected $default_database;
Expand Down

0 comments on commit f48a957

Please sign in to comment.