Release 2.12 (#4609)
This commit is contained in:
@@ -17,7 +17,7 @@ use App\Repository\Loader\ActivityLoader;
|
||||
*/
|
||||
class ActivityLoaderTest extends AbstractLoaderTest
|
||||
{
|
||||
public function testLoadResults()
|
||||
public function testLoadResults(): void
|
||||
{
|
||||
$em = $this->getEntityManagerMock(3);
|
||||
|
||||
|
||||
@@ -17,7 +17,7 @@ use App\Repository\Loader\CustomerLoader;
|
||||
*/
|
||||
class CustomerLoaderTest extends AbstractLoaderTest
|
||||
{
|
||||
public function testLoadResults()
|
||||
public function testLoadResults(): void
|
||||
{
|
||||
$em = $this->getEntityManagerMock(2);
|
||||
|
||||
|
||||
@@ -17,7 +17,7 @@ use PHPUnit\Framework\TestCase;
|
||||
*/
|
||||
class DefaultLoaderTest extends TestCase
|
||||
{
|
||||
public function testLoadResults()
|
||||
public function testLoadResults(): void
|
||||
{
|
||||
$sut = new DefaultLoader();
|
||||
|
||||
|
||||
@@ -17,7 +17,7 @@ use App\Repository\Loader\InvoiceLoader;
|
||||
*/
|
||||
class InvoiceLoaderTest extends AbstractLoaderTest
|
||||
{
|
||||
public function testLoadResults()
|
||||
public function testLoadResults(): void
|
||||
{
|
||||
$em = $this->getEntityManagerMock(3);
|
||||
|
||||
|
||||
@@ -18,7 +18,7 @@ use App\Repository\Loader\ProjectLoader;
|
||||
*/
|
||||
class ProjectLoaderTest extends AbstractLoaderTest
|
||||
{
|
||||
public function testLoadResults()
|
||||
public function testLoadResults(): void
|
||||
{
|
||||
$customer = $this->createMock(Customer::class);
|
||||
$customer->expects($this->once())->method('getId')->willReturn(13);
|
||||
|
||||
@@ -17,7 +17,7 @@ use App\Repository\Loader\TeamLoader;
|
||||
*/
|
||||
class TeamLoaderTest extends AbstractLoaderTest
|
||||
{
|
||||
public function testLoadResults()
|
||||
public function testLoadResults(): void
|
||||
{
|
||||
$em = $this->getEntityManagerMock(2);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user