mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-12 15:35:15 +00:00
Remove slash from method call.
This commit is contained in:
@@ -51,7 +51,7 @@ class StageAuthenticatedHandlerTest extends TestCase
|
||||
public function setUp(): void
|
||||
{
|
||||
parent::setUp();
|
||||
Log::info(sprintf('Now in %s.', \get_class($this)));
|
||||
Log::info(sprintf('Now in %s.', get_class($this)));
|
||||
}
|
||||
|
||||
/**
|
||||
|
@@ -49,7 +49,7 @@ class StageImportDataHandlerTest extends TestCase
|
||||
public function setUp(): void
|
||||
{
|
||||
parent::setUp();
|
||||
Log::info(sprintf('Now in %s.', \get_class($this)));
|
||||
Log::info(sprintf('Now in %s.', get_class($this)));
|
||||
}
|
||||
|
||||
/**
|
||||
|
@@ -52,7 +52,7 @@ class StageNewHandlerTest extends TestCase
|
||||
public function setUp(): void
|
||||
{
|
||||
parent::setUp();
|
||||
Log::info(sprintf('Now in %s.', \get_class($this)));
|
||||
Log::info(sprintf('Now in %s.', get_class($this)));
|
||||
}
|
||||
// todo run() with zero logins and an existing customer (must be retrieved from Spectre).
|
||||
// todo run() with one login and an existing customer (must be retrieved from Spectre).
|
||||
|
Reference in New Issue
Block a user