Code cleanup

This commit is contained in:
James Cole
2019-08-17 10:54:16 +02:00
parent 1974d5f1e3
commit 6d1bfd3956
11 changed files with 31 additions and 20 deletions

View File

@@ -125,14 +125,14 @@ class MappedValuesValidatorTest extends TestCase
}
/**
* @param int $id
* @param int $objectId
*
* @return stdClass
*/
private function objectWithId(int $id): stdClass
private function objectWithId(int $objectId): stdClass
{
$obj = new stdClass();
$obj->id = $id;
$obj->id = $objectId;
return $obj;
}