Skip to content

Commit

Permalink
Trimming trailing spaces & CS
Browse files Browse the repository at this point in the history
  • Loading branch information
gajdaw committed May 4, 2012
1 parent 9d52904 commit 688d8b7
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Admin/Document/GroupAdmin.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ protected function configureDatagridFilters(DatagridMapper $datagridMapper)
->add('name')
;
}

protected function configureFormFields(FormMapper $formMapper)
{
$formMapper
Expand Down
2 changes: 1 addition & 1 deletion Document/BaseUser.php
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ public function __toString()
*/
public function setGroups($groups)
{
foreach ($groups as $group){
foreach ($groups as $group) {
$this->addGroup($group);
}
}
Expand Down
6 changes: 3 additions & 3 deletions Entity/BaseUser.php
Original file line number Diff line number Diff line change
Expand Up @@ -73,10 +73,10 @@ public function getUpdatedAt()
{
return $this->updatedAt;
}

/**
* Returns the expiration date
*
*
* @return \DateTime|null
*/
public function getExpiresAt()
Expand Down Expand Up @@ -138,7 +138,7 @@ public function __toString()
*/
public function setGroups($groups)
{
foreach ($groups as $group){
foreach ($groups as $group) {
$this->addGroup($group);
}
}
Expand Down

0 comments on commit 688d8b7

Please sign in to comment.