Skip to content

Commit

Permalink
not require FOSUserBundle
Browse files Browse the repository at this point in the history
fix some typos
  • Loading branch information
piotrantosik committed Apr 16, 2015
1 parent ada3a14 commit 07991a1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
3 changes: 1 addition & 2 deletions Model/Payment.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
namespace AntQa\Bundle\PayUBundle\Model;

use Doctrine\ORM\Mapping as ORM;
use FOS\UserBundle\Model\User;
use Symfony\Component\Security\Core\User\UserInterface;

/**
Expand Down Expand Up @@ -52,7 +51,7 @@ abstract class Payment
protected $createdAt;

/**
* @var User|null
* @var UserInterface|null
*/
protected $user;

Expand Down
2 changes: 1 addition & 1 deletion Resources/doc/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ use AntQa\Bundle\PayUBundle\Model\Payment as PaymentModel;
* Class Payment
*
* @ORM\Entity()
* @ORM\Table(name="sc_payment")
* @ORM\Table(name="payments")
*/
class Payment extends PaymentModel
{
Expand Down
5 changes: 2 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,9 @@
"symfony/twig-bundle": "~2.3",
"symfony/options-resolver": "~2.3",
"symfony/property-access": "~2.3",
"doctrine/doctrine-bundle": "*",
"doctrine/doctrine-bundle": "~1.2",
"doctrine/orm": "~2.2,>=2.2.3",
"openpayu/openpayu": ">=2.1.0",
"friendsofsymfony/user-bundle": "*"
"openpayu/openpayu": "~2.1.0"
},
"require-dev": {
"symfony/yaml": "~2.3"
Expand Down

0 comments on commit 07991a1

Please sign in to comment.