Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
aerni authored and github-actions[bot] committed Sep 10, 2024
1 parent 119894c commit 7b4f3aa
Showing 1 changed file with 12 additions and 9 deletions.
21 changes: 12 additions & 9 deletions tests/FactoryTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,20 @@

namespace Aerni\Factory\Tests;

use ReflectionClass;
use Statamic\Facades\Site;
use Illuminate\Support\Collection;
use Aerni\Factory\Factories\Concerns\CreatesEntry;
use Aerni\Factory\Factories\Concerns\CreatesTerm;
use Aerni\Factory\Factories\Factory;
use Statamic\Contracts\Entries\Entry;
use Illuminate\Database\Eloquent\Factories\CrossJoinSequence;
use Illuminate\Support\Collection;
use Illuminate\Support\Facades\Config;
use ReflectionClass;
use Statamic\Contracts\Entries\Entry;
use Statamic\Contracts\Taxonomies\Term;
use Aerni\Factory\Factories\Concerns\CreatesTerm;
use Statamic\Facades\Term as TermFacade;
use Aerni\Factory\Factories\Concerns\CreatesEntry;
use Statamic\Facades\Collection as CollectionFacade;
use Statamic\Facades\Entry as EntryFacade;
use Statamic\Facades\Site;
use Statamic\Facades\Taxonomy as TaxonomyFacade;
use Statamic\Facades\Collection as CollectionFacade;
use Illuminate\Database\Eloquent\Factories\CrossJoinSequence;
use Statamic\Facades\Term as TermFacade;
use Statamic\Testing\Concerns\PreventsSavingStacheItemsToDisk;

class FactoryTest extends TestCase
Expand Down Expand Up @@ -383,6 +383,7 @@ class FactoryTestEntryFactory extends Factory
use CreatesEntry;

protected string $collection = 'pages';

protected string $blueprint = 'page';

public function definition(): array
Expand All @@ -398,6 +399,7 @@ class FactoryTestTermFactory extends Factory
use CreatesTerm;

protected string $taxonomy = 'tags';

protected string $blueprint = 'tag';

public function definition(): array
Expand All @@ -413,6 +415,7 @@ class FactoryTestPostFactory extends Factory
use CreatesEntry;

protected string $collection = 'posts';

protected string $blueprint = 'post';

public function definition(): array
Expand Down

0 comments on commit 7b4f3aa

Please sign in to comment.