diff --git a/tests/Doctrine/Tests/Common/Proxy/ProxyLogicTypehintsTest.php b/tests/Doctrine/Tests/Common/Proxy/ProxyLogicTypehintsTest.php index fc6798377..c83426f3c 100644 --- a/tests/Doctrine/Tests/Common/Proxy/ProxyLogicTypehintsTest.php +++ b/tests/Doctrine/Tests/Common/Proxy/ProxyLogicTypehintsTest.php @@ -144,14 +144,15 @@ public function setUpProxy() /** * @dataProvider dataNoLazyLoadingForIdentifier - * @param string $field + * + * @param string $fieldName */ - public function testNoLazyLoadingForIdentifier($field) + public function testNoLazyLoadingForIdentifier($fieldName) { $this->configureInitializerMock(0); - $getter = 'get' . ucfirst($field); + $getter = 'get' . ucfirst($fieldName); - $this->assertSame($this->identifier[$field], $this->lazyObject->$getter()); + $this->assertSame($this->identifier[$fieldName], $this->lazyObject->$getter()); } /**