Change scope of getGetterName and getSetterName methods

This commit is contained in:
Jakub Turek
2015-03-09 08:16:05 +01:00
parent 3f02ebcfe4
commit c690ea3efe
+2 -2
View File
@@ -105,7 +105,7 @@ abstract class BaseTest extends \PHPUnit_Framework_TestCase
* @param string $propertyName Property name * @param string $propertyName Property name
* @return string Getter method name * @return string Getter method name
*/ */
final protected function getGetterName($propertyName) private function getGetterName($propertyName)
{ {
return 'get' . ucfirst($propertyName); return 'get' . ucfirst($propertyName);
} }
@@ -116,7 +116,7 @@ abstract class BaseTest extends \PHPUnit_Framework_TestCase
* @param string $propertyName Property name * @param string $propertyName Property name
* @return string Getter method name * @return string Getter method name
*/ */
final protected function getSetterName($propertyName) private function getSetterName($propertyName)
{ {
return 'set' . ucfirst($propertyName); return 'set' . ucfirst($propertyName);
} }