Skip to content

Commit

Permalink
🧹 Fixed code-style
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Apr 11, 2024
1 parent 5429d5e commit 8e27844
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/Cash/tests/Concerns/Database.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ trait Database
{
use RefreshDatabase;

/** @var \Illuminate\Database\Eloquent\Model|string */
/** @var Model|string */
protected $model = ReadyPayment::class;

protected function payment(): Model
Expand Down
2 changes: 1 addition & 1 deletion src/SberOnline/tests/Concerns/Database.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ trait Database
{
use RefreshDatabase;

/** @var \Illuminate\Database\Eloquent\Model|string */
/** @var Model|string */
protected $model = ReadyPayment::class;

protected function payment(): Model
Expand Down
2 changes: 1 addition & 1 deletion src/SberQrCode/tests/Concerns/Database.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ trait Database
{
use RefreshDatabase;

/** @var \Illuminate\Database\Eloquent\Model|string */
/** @var Model|string */
protected $model = ReadyPayment::class;

protected function payment(): Model
Expand Down
2 changes: 1 addition & 1 deletion src/SberQrCode/tests/Responses/QrCodeTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public function testToArray()
}

/**
* @return \CashierProvider\Sber\QrCode\Responses\QrCode|\DragonCode\Contracts\Cashier\Http\Response
* @return QrCode|Response
*/
protected function response(): Response
{
Expand Down
2 changes: 1 addition & 1 deletion src/TemplateDriver/tests/Concerns/Database.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ trait Database
{
use RefreshDatabase;

/** @var \Illuminate\Database\Eloquent\Model|string */
/** @var Model|string */
protected $model = ReadyPayment::class;

protected function payment(): Model
Expand Down
2 changes: 1 addition & 1 deletion src/TinkoffCredit/tests/Concerns/Database.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ trait Database
{
use RefreshDatabase;

/** @var \Illuminate\Database\Eloquent\Model|string */
/** @var Model|string */
protected $model = ReadyPayment::class;

protected function payment(): Model
Expand Down
2 changes: 1 addition & 1 deletion src/TinkoffQrCode/tests/Responses/QrCodeTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public function testToArray()
}

/**
* @return \CashierProvider\Tinkoff\QrCode\Responses\QrCode|\DragonCode\Contracts\Cashier\Http\Response
* @return QrCode|Response
*/
protected function response(): Response
{
Expand Down

0 comments on commit 8e27844

Please sign in to comment.