Skip to content

Commit

Permalink
correction platformbundle à userbundle dans donation setuser
Browse files Browse the repository at this point in the history
  • Loading branch information
GWillmann committed Dec 5, 2014
1 parent 5eab534 commit 0aa6f0c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion app/config/config_prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ monolog:
handler: nested
nested:
type: stream
path: "%kernel.logs_dir%/%kernel.environment%.log"
path: "php://stderr"
level: debug
console:
type: console
16 changes: 8 additions & 8 deletions src/CG/PlatformBundle/Entity/Donation.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ class Donation
/**
* Get id
*
* @return integer
* @return integer
*/
public function getId()
{
Expand All @@ -80,7 +80,7 @@ public function setAmount($amount)
/**
* Get amount
*
* @return float
* @return float
*/
public function getAmount()
{
Expand All @@ -103,7 +103,7 @@ public function setCurrency($currency)
/**
* Get currency
*
* @return string
* @return string
*/
public function getCurrency()
{
Expand All @@ -126,7 +126,7 @@ public function setDate($date)
/**
* Get date
*
* @return \DateTime
* @return \DateTime
*/
public function getDate()
{
Expand All @@ -136,10 +136,10 @@ public function getDate()
/**
* Set user
*
* @param \CG\PlatformBundle\Entity\User $user
* @param \CG\UserBundle\Entity\User $user
* @return Donation
*/
public function setUser(\CG\PlatformBundle\Entity\User $user = null)
public function setUser(\CG\UserBundle\Entity\User $user = null)
{
$this->user = $user;

Expand All @@ -149,7 +149,7 @@ public function setUser(\CG\PlatformBundle\Entity\User $user = null)
/**
* Get user
*
* @return \CG\PlatformBundle\Entity\User
* @return \CG\PlatformBundle\Entity\User
*/
public function getUser()
{
Expand All @@ -172,7 +172,7 @@ public function setEvent(\CG\PlatformBundle\Entity\Event $event = null)
/**
* Get event
*
* @return \CG\PlatformBundle\Entity\Event
* @return \CG\PlatformBundle\Entity\Event
*/
public function getEvent()
{
Expand Down

0 comments on commit 0aa6f0c

Please sign in to comment.