CODE STYLE class/model/ files

This commit is contained in:
Fernando Ontiveros
2012-10-20 17:19:10 -04:00
parent 319f755d18
commit ea98460f99
28 changed files with 845 additions and 851 deletions

View File

@@ -101,7 +101,7 @@ class GroupUser extends BaseGroupUser
}
}
function getCountAllUsersByGroup ()
public function getCountAllUsersByGroup ()
{
$oCriteria = new Criteria( 'workflow' );
$oCriteria->addSelectColumn( GroupUserPeer::GRP_UID );
@@ -119,7 +119,7 @@ class GroupUser extends BaseGroupUser
return $aRows;
}
function getAllUserGroups ($usrUid)
public function getAllUserGroups ($usrUid)
{
$oCriteria = new Criteria( 'workflow' );
$oCriteria->add( GroupUserPeer::USR_UID, $usrUid );
@@ -143,5 +143,4 @@ class GroupUser extends BaseGroupUser
return $rows;
}
}
// GroupUser