Skip to content

Commit

Permalink
*8148* rename function for consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
jnugent committed May 12, 2014
1 parent 7d48846 commit 77c9574
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -50,7 +50,7 @@ function getAuthorizationPolicy($request, $args, $roleAssignments) {
* @copydoc GridDataProvider::getRequestArgs()
*/
function getRequestArgs() {
return array('canEdit' => $this->getCanEdit());
return array('canEdit' => $this->canEdit());
}

/**
Expand All @@ -66,7 +66,7 @@ function &getContext() {
* get whether or not this grid is editable (has actions).
* @return boolean $canEdit
*/
function getCanEdit() {
function canEdit() {
return $this->_canEdit;
}

Expand Down

0 comments on commit 77c9574

Please sign in to comment.