Skip to content

Commit

Permalink
Merge pull request #1 from mikemix/master
Browse files Browse the repository at this point in the history
Replaced nullable option from string to true
  • Loading branch information
giorgiosironi committed Jan 13, 2013
2 parents 0c11e1f + d16e8f7 commit e750087
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Model/Customer.php
Expand Up @@ -14,7 +14,7 @@ class Customer
private $id;

/**
* @Column(type="string", nullable="true")
* @Column(type="string", nullable=true)
*/
private $name;

Expand Down
8 changes: 4 additions & 4 deletions Model/CustomerOrder.php
Expand Up @@ -15,12 +15,12 @@ class CustomerOrder
private $id;

/**
* @Column(type="object", nullable="true")
* @Column(type="object", nullable=true)
*/
private $paymentMethodSerialized;

/**
* @Column(type="payment_method", nullable="true")
* @Column(type="payment_method", nullable=true)
*/
private $paymentMethodCustomMapping;

Expand All @@ -45,12 +45,12 @@ public function getPaymentMethodCustomMapping()
}

/**
* @Column(type="string", nullable="true")
* @Column(type="string", nullable=true)
*/
private $paymentMethodLifecycleHooksName;

/**
* @Column(type="string", nullable="true")
* @Column(type="string", nullable=true)
*/
private $paymentMethodLifecycleHooksType;

Expand Down
4 changes: 4 additions & 0 deletions README.md
@@ -0,0 +1,4 @@
=======
Testing

phpunit --bootstrap bootstrap.php Test

0 comments on commit e750087

Please sign in to comment.