Skip to content

Commit

Permalink
fix docblock annotation and add setter
Browse files Browse the repository at this point in the history
  • Loading branch information
cordoval authored and Evgeniy Guseletov committed Aug 7, 2012
1 parent ffa34b5 commit c08ef2e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/config/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ doctrine:
dbal:
driver: %database_driver%
host: %database_host%
path: %database_path%
#path: %database_path%
port: %database_port%
dbname: %database_name%
user: %database_user%
Expand Down
7 changes: 6 additions & 1 deletion src/Knp/Bundle/KnpBundlesBundle/Entity/Bundle.php
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ class Bundle
*/
protected $indexedAt;

/*
/**
* @ORM\Column(type="integer")
*/
protected $nbRecommenders;
Expand Down Expand Up @@ -1111,4 +1111,9 @@ public function setCanonicalConfig($canonicalConfig)
{
$this->canonicalConfig = $canonicalConfig;
}

public function setNbRecommenders($nbRecommenders)
{
$this->nbRecommenders = $nbRecommenders;
}
}

0 comments on commit c08ef2e

Please sign in to comment.