mirror of
https://github.com/hauke68/Magallanes.git
synced 2026-09-06 09:28:57 +02:00
Change scope of getGetterName and getSetterName methods
This commit is contained in:
@@ -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);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user