From a1bdf874d393251a4860ddedc3247c48f1c4ad18 Mon Sep 17 00:00:00 2001 From: Marco Pivetta Date: Fri, 13 Jan 2017 13:14:27 +0100 Subject: [PATCH] #761 #762 s/$field/$fieldName --- .../Tests/Common/Proxy/ProxyLogicTypehintsTest.php | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) 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()); } /**