Skip to content

Commit

Permalink
Renamed rest of the files ;)
Browse files Browse the repository at this point in the history
  • Loading branch information
schmeits committed Jan 26, 2024
1 parent 3a61009 commit 90ab904
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/Recorders/TableInfoRecorder.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
use Illuminate\Database\PostgresConnection;
use Laravel\Pulse\Events\SharedBeat;
use Laravel\Pulse\Pulse;
use Schmeits\PulseDatabaseTableSizes\Exceptions\DatabaseNotSupported;
use Schmeits\PulseDatabaseTableInfo\Exceptions\DatabaseNotSupported;

class TableInfoRecorder
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Pest.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php

use Schmeits\PulseDatabaseTableSizes\Tests\TestCase;
use Schmeits\PulseDatabaseTableInfo\Tests\TestCase;

uses(TestCase::class)->in(__DIR__);
6 changes: 3 additions & 3 deletions tests/TestCase.php
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<?php

namespace Schmeits\PulseDatabaseTableSizes\Tests;
namespace Schmeits\PulseDatabaseTableInfo\Tests;

use Illuminate\Database\Eloquent\Factories\Factory;
use Orchestra\Testbench\TestCase as Orchestra;
use Schmeits\PulseDatabaseTableSizes\PulseDatabaseTableInfoServiceProvider;
use Schmeits\PulseDatabaseTableInfo\PulseDatabaseTableInfoServiceProvider;

class TestCase extends Orchestra
{
Expand All @@ -13,7 +13,7 @@ protected function setUp(): void
parent::setUp();

Factory::guessFactoryNamesUsing(
fn (string $modelName) => 'Schmeits\\PulseDatabaseTableSizes\\Database\\Factories\\'.class_basename($modelName).'Factory'
fn (string $modelName) => 'Schmeits\\PulseDatabaseTableInfo\\Database\\Factories\\'.class_basename($modelName).'Factory'
);
}

Expand Down

0 comments on commit 90ab904

Please sign in to comment.