Skip to content

Commit

Permalink
Apply pint changes
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanmitchell authored and github-actions[bot] committed Aug 30, 2024
1 parent 480b058 commit 349ca0d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 3 additions & 1 deletion src/Jobs/Invalidate.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ class Invalidate implements ShouldBeUnique, ShouldQueue
/**
* Create a new job instance.
*/
public function __construct(public array $tags) {}
public function __construct(public array $tags)
{
}

public function tags(): array
{
Expand Down
4 changes: 3 additions & 1 deletion src/Jobs/InvalidateModel.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ class InvalidateModel implements ShouldBeUnique, ShouldQueue
/**
* Create a new job instance.
*/
public function __construct(public $model) {}
public function __construct(public $model)
{
}

public function tags(): array
{
Expand Down
2 changes: 1 addition & 1 deletion tests/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,6 @@ protected function resolveApplicationConfiguration($app)
Encrypter::generateKey($app['config']['app.cipher'])
));

$app['config']->set('statamic-cache', require (__DIR__.'/../config/statamic-cache.php'));
$app['config']->set('statamic-cache', require(__DIR__.'/../config/statamic-cache.php'));
}
}

0 comments on commit 349ca0d

Please sign in to comment.