forked from LiveCarta/PayPal-PHP-SDK
Merge pull request #347 from irfanevrens/master
Formatting Changes Only
This commit is contained in:
@@ -283,6 +283,4 @@ class CartBase extends PayPalModel
|
|||||||
{
|
{
|
||||||
return $this->order_url;
|
return $this->order_url;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -88,7 +88,7 @@ abstract class AuthorizationCache
|
|||||||
public static function isEnabled($config)
|
public static function isEnabled($config)
|
||||||
{
|
{
|
||||||
$value = self::getConfigValue('cache.enabled', $config);
|
$value = self::getConfigValue('cache.enabled', $config);
|
||||||
return empty($value) ? false : ((trim($value) == true || trim($value) == 'true') ? true : false);
|
return empty($value) ? false : ((trim($value) == true || trim($value) == 'true'));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -10,7 +10,6 @@ namespace PayPal\Common;
|
|||||||
*/
|
*/
|
||||||
class ArrayUtil
|
class ArrayUtil
|
||||||
{
|
{
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @param array $arr
|
* @param array $arr
|
||||||
|
|||||||
@@ -2,8 +2,8 @@
|
|||||||
|
|
||||||
namespace PayPal\Converter;
|
namespace PayPal\Converter;
|
||||||
|
|
||||||
class FormatConverter {
|
class FormatConverter
|
||||||
|
{
|
||||||
/**
|
/**
|
||||||
* Format the data based on the input formatter value
|
* Format the data based on the input formatter value
|
||||||
*
|
*
|
||||||
|
|||||||
Reference in New Issue
Block a user