Skip to content

Commit

Permalink
Clearer method name.
Browse files Browse the repository at this point in the history
Avoid confusion with member property of the same name.
  • Loading branch information
mrubinsk committed Feb 28, 2015
1 parent 58823a5 commit 441ca68
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ public function fromvEvent($vCal)
switch ($component->getType()) {
case 'vEvent':
$this->_vEvent = $component;
$this->_vEvent($component, $method);
$this->_parsevEvent($component, $method);
break;

case 'vTimeZone':
Expand Down Expand Up @@ -184,7 +184,7 @@ public function getvEvent()
*
* @throws Horde_ActiveSync_Exception
*/
protected function _vEvent($vevent, $method = 'REQUEST')
protected function _parsevEvent($vevent, $method = 'REQUEST')
{
if ($method == 'REQUEST') {
$this->responserequested = '1';
Expand Down

0 comments on commit 441ca68

Please sign in to comment.