Skip to content

Commit

Permalink
Indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
heristop committed Aug 9, 2010
1 parent 5aa205e commit 0775fc4
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions lib/model/doctrine/PluginsfCombine.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ abstract class PluginsfCombine extends BasesfCombine
static public function getByKey($key)
{
return Doctrine::getTable('sfCombine')
->find($key);
->find($key);
}

/**
Expand All @@ -29,7 +29,6 @@ static public function getByKey($key)
static public function hasKey($key)
{
return self::getByKey($key) == true;

}

/**
Expand All @@ -40,7 +39,7 @@ static public function hasKey($key)
static public function getAll()
{
return Doctrine::getTable('sfCombine')
->findAll();
->findAll();
}

/**
Expand All @@ -50,8 +49,8 @@ static public function getAll()
static public function deleteAll()
{
return Doctrine::getTable('sfCombine')
->createQuery()
->delete()
->execute();
->createQuery()
->delete()
->execute();
}
}

0 comments on commit 0775fc4

Please sign in to comment.