Laravel Pint fixes
Some checks failed
PHP Unit / PHPUnit test suite (pull_request) Has been cancelled
Laravel Pint / Laravel Pint (pull_request) Has been cancelled

This commit is contained in:
Jonny Barnes 2025-04-06 17:25:06 +01:00
parent 7a58287b34
commit 126bb29ae2
Signed by: jonny
SSH key fingerprint: SHA256:CTuSlns5U7qlD9jqHvtnVmfYV3Zwl2Z7WnJ4/dqOaL8
50 changed files with 299 additions and 299 deletions

View file

@ -27,7 +27,7 @@ class BookmarksTest extends TestCase
}*/
#[Test]
public function archiveLinkMethodCallsArchiveService(): void
public function archive_link_method_calls_archive_service(): void
{
$mock = new MockHandler([
new Response(200, ['Content-Location' => '/web/1234/example.org']),
@ -40,7 +40,7 @@ class BookmarksTest extends TestCase
}
#[Test]
public function archiveLinkMethodThrowsAnExceptionOnError(): void
public function archive_link_method_throws_an_exception_on_error(): void
{
$this->expectException(InternetArchiveException::class);
@ -54,7 +54,7 @@ class BookmarksTest extends TestCase
}
#[Test]
public function archiveLinkMethodThrowsAnExceptionIfNoLocationReturned(): void
public function archive_link_method_throws_an_exception_if_no_location_returned(): void
{
$this->expectException(InternetArchiveException::class);