Skip to content

Commit

Permalink
add namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
rez1dent3 committed Dec 30, 2023
1 parent 6f06d2f commit ce948f2
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 0 deletions.
2 changes: 2 additions & 0 deletions database/2018_11_06_222923_create_transactions_table.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

declare(strict_types=1);

namespace database;

use Bavix\Wallet\Models\Transaction;
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
Expand Down
2 changes: 2 additions & 0 deletions database/2018_11_07_192923_create_transfers_table.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

declare(strict_types=1);

namespace database;

use Bavix\Wallet\Models\Transaction;
use Bavix\Wallet\Models\Transfer;
use Illuminate\Database\Migrations\Migration;
Expand Down
2 changes: 2 additions & 0 deletions database/2018_11_15_124230_create_wallets_table.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

declare(strict_types=1);

namespace database;

use Bavix\Wallet\Models\Transaction;
use Bavix\Wallet\Models\Wallet;
use Illuminate\Database\Migrations\Migration;
Expand Down
2 changes: 2 additions & 0 deletions database/2021_11_02_202021_update_wallets_uuid_table.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

declare(strict_types=1);

namespace database;

use Bavix\Wallet\Internal\Service\UuidFactoryServiceInterface;
use Bavix\Wallet\Models\Wallet;
use Illuminate\Database\Migrations\Migration;
Expand Down
2 changes: 2 additions & 0 deletions database/2023_12_30_113122_extra_columns_removed.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

declare(strict_types=1);

namespace database;

use Bavix\Wallet\Models\Transfer;
use Illuminate\Database\Migrations\Migration;

Check warning on line 8 in database/2023_12_30_113122_extra_columns_removed.php

View workflow job for this annotation

GitHub Actions / Qodana for PHP

Undefined class

Undefined class 'Migration'

Check warning on line 8 in database/2023_12_30_113122_extra_columns_removed.php

View workflow job for this annotation

GitHub Actions / Qodana for PHP

Undefined namespace

Undefined namespace 'Migrations'
use Illuminate\Database\Schema\Blueprint;

Check warning on line 9 in database/2023_12_30_113122_extra_columns_removed.php

View workflow job for this annotation

GitHub Actions / Qodana for PHP

Undefined class

Undefined class 'Blueprint'

Check warning on line 9 in database/2023_12_30_113122_extra_columns_removed.php

View workflow job for this annotation

GitHub Actions / Qodana for PHP

Undefined namespace

Undefined namespace 'Schema'
Expand Down
2 changes: 2 additions & 0 deletions database/2023_12_30_204610_soft_delete.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

declare(strict_types=1);

namespace database;

use Bavix\Wallet\Models\Transaction;
use Bavix\Wallet\Models\Transfer;
use Bavix\Wallet\Models\Wallet;
Expand Down

0 comments on commit ce948f2

Please sign in to comment.