From 90c9b90c006308a5f29ddc61e085a906042e4058 Mon Sep 17 00:00:00 2001 From: Andrew Longosz Date: Tue, 11 Sep 2018 11:26:26 +0200 Subject: [PATCH] [Tests][6.13] Removed PHP7 strict types to keep PHP5.6 compat --- Repository/Tests/TrashServiceTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Repository/Tests/TrashServiceTest.php b/Repository/Tests/TrashServiceTest.php index 7a2cdb592..e22ad731e 100644 --- a/Repository/Tests/TrashServiceTest.php +++ b/Repository/Tests/TrashServiceTest.php @@ -887,7 +887,7 @@ private function assertAliasNotExists(URLAliasService $urlAliasService, $urlPath /** * Get Test Double for TrashItem for exception testing and similar. */ - private function getTrashItemDouble(int $trashId, int $contentId = 44, int $parentLocationId = 2): TrashItem + private function getTrashItemDouble($trashId, $contentId = 44, $parentLocationId = 2) { return new TrashItem([ 'id' => $trashId,