mirror of
https://github.com/shlinkio/shlink.git
synced 2026-03-10 17:23:12 +08:00
Update to PHP coding standard 2.4.0
This commit is contained in:
@@ -27,8 +27,11 @@ class InitialApiKeyCommandTest extends TestCase
|
||||
}
|
||||
|
||||
#[Test, DataProvider('provideParams')]
|
||||
public function initialKeyIsCreatedWithProvidedValue(?ApiKey $result, bool $verbose, string $expectedOutput): void
|
||||
{
|
||||
public function initialKeyIsCreatedWithProvidedValue(
|
||||
ApiKey|null $result,
|
||||
bool $verbose,
|
||||
string $expectedOutput,
|
||||
): void {
|
||||
$this->apiKeyService->expects($this->once())->method('createInitial')->with('the_key')->willReturn($result);
|
||||
|
||||
$this->commandTester->execute(
|
||||
|
||||
Reference in New Issue
Block a user