Applied php-cs-fixer with level psr2

This commit is contained in:
Franck Allimant
2014-05-17 10:49:34 +02:00
parent ef142ca077
commit 2c7337d8e0
4 changed files with 123 additions and 119 deletions

View File

@@ -12,7 +12,8 @@ class OrderCoupon extends BaseOrderCoupon
* Return the countries for which free shipping is valid
* @return array|mixed|\Propel\Runtime\Collection\ObjectCollection
*/
public function getFreeShippingForCountries() {
public function getFreeShippingForCountries()
{
return OrderCouponCountryQuery::create()->filterByOrderCoupon($this)->find();
}
@@ -21,7 +22,8 @@ class OrderCoupon extends BaseOrderCoupon
*
* @return array|mixed|\Propel\Runtime\Collection\ObjectCollection
*/
public function getFreeShippingForModules() {
public function getFreeShippingForModules()
{
return OrderCouponModuleQuery::create()->filterByOrderCoupon($this)->find();
}
}