1
0
mirror of https://github.com/hauke68/Magallanes.git synced 2025-08-26 05:10:17 +02:00

Change scope of getGetterName and getSetterName methods

This commit is contained in:
Jakub Turek 2015-03-08 21:43:11 +01:00
parent 3f02ebcfe4
commit c690ea3efe

View File

@ -105,7 +105,7 @@ abstract class BaseTest extends \PHPUnit_Framework_TestCase
* @param string $propertyName Property name
* @return string Getter method name
*/
final protected function getGetterName($propertyName)
private function getGetterName($propertyName)
{
return 'get' . ucfirst($propertyName);
}
@ -116,7 +116,7 @@ abstract class BaseTest extends \PHPUnit_Framework_TestCase
* @param string $propertyName Property name
* @return string Getter method name
*/
final protected function getSetterName($propertyName)
private function getSetterName($propertyName)
{
return 'set' . ucfirst($propertyName);
}