Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace UTF-8 non-breakable space (0xC2A0) with 0x20 (ASCII space) #391

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/net/authorize/api/contract/v1/ANetApiRequestType.php
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ function ($val){
// Json Set Code
public function set($data)
{
if(is_array($data) || is_object($data)) {
if(is_array($data) || is_object($data)) {
$mapper = \net\authorize\util\Mapper::Instance();
foreach($data AS $key => $value) {
$classDetails = $mapper->getClass(get_class() , $key);
Expand Down
2 changes: 1 addition & 1 deletion lib/net/authorize/api/contract/v1/ANetApiResponseType.php
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ function ($val){
// Json Set Code
public function set($data)
{
if(is_array($data) || is_object($data)) {
if(is_array($data) || is_object($data)) {
$mapper = \net\authorize\util\Mapper::Instance();
foreach($data AS $key => $value) {
$classDetails = $mapper->getClass(get_class() , $key);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class ARBCancelSubscriptionResponse extends ANetApiResponseType
// Json Set Code
public function set($data)
{
if(is_array($data) || is_object($data)) {
if(is_array($data) || is_object($data)) {
$mapper = \net\authorize\util\Mapper::Instance();
foreach($data AS $key => $value) {
$classDetails = $mapper->getClass(get_class() , $key);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public function setProfile(\net\authorize\api\contract\v1\CustomerProfileIdType
// Json Set Code
public function set($data)
{
if(is_array($data) || is_object($data)) {
if(is_array($data) || is_object($data)) {
$mapper = \net\authorize\util\Mapper::Instance();
foreach($data AS $key => $value) {
$classDetails = $mapper->getClass(get_class() , $key);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ public function setSubscriptionDetails(array $subscriptionDetails)
// Json Set Code
public function set($data)
{
if(is_array($data) || is_object($data)) {
if(is_array($data) || is_object($data)) {
$mapper = \net\authorize\util\Mapper::Instance();
foreach($data AS $key => $value) {
$classDetails = $mapper->getClass(get_class() , $key);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ function ($val){
// Json Set Code
public function set($data)
{
if(is_array($data) || is_object($data)) {
if(is_array($data) || is_object($data)) {
$mapper = \net\authorize\util\Mapper::Instance();
foreach($data AS $key => $value) {
$classDetails = $mapper->getClass(get_class() , $key);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public function setSubscription(\net\authorize\api\contract\v1\ARBSubscriptionMa
// Json Set Code
public function set($data)
{
if(is_array($data) || is_object($data)) {
if(is_array($data) || is_object($data)) {
$mapper = \net\authorize\util\Mapper::Instance();
foreach($data AS $key => $value) {
$classDetails = $mapper->getClass(get_class() , $key);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public function setStatus($status)
// Json Set Code
public function set($data)
{
if(is_array($data) || is_object($data)) {
if(is_array($data) || is_object($data)) {
$mapper = \net\authorize\util\Mapper::Instance();
foreach($data AS $key => $value) {
$classDetails = $mapper->getClass(get_class() , $key);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ function ($val){
// Json Set Code
public function set($data)
{
if(is_array($data) || is_object($data)) {
if(is_array($data) || is_object($data)) {
$mapper = \net\authorize\util\Mapper::Instance();
foreach($data AS $key => $value) {
$classDetails = $mapper->getClass(get_class() , $key);
Expand Down
2 changes: 1 addition & 1 deletion lib/net/authorize/api/contract/v1/ARBSubscriptionType.php
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ function ($val){
// Json Set Code
public function set($data)
{
if(is_array($data) || is_object($data)) {
if(is_array($data) || is_object($data)) {
$mapper = \net\authorize\util\Mapper::Instance();
foreach($data AS $key => $value) {
$classDetails = $mapper->getClass(get_class() , $key);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public function setProfile(\net\authorize\api\contract\v1\CustomerProfileIdType
// Json Set Code
public function set($data)
{
if(is_array($data) || is_object($data)) {
if(is_array($data) || is_object($data)) {
$mapper = \net\authorize\util\Mapper::Instance();
foreach($data AS $key => $value) {
$classDetails = $mapper->getClass(get_class() , $key);
Expand Down
2 changes: 1 addition & 1 deletion lib/net/authorize/api/contract/v1/ArbTransactionType.php
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ function ($val){
// Json Set Code
public function set($data)
{
if(is_array($data) || is_object($data)) {
if(is_array($data) || is_object($data)) {
$mapper = \net\authorize\util\Mapper::Instance();
foreach($data AS $key => $value) {
$classDetails = $mapper->getClass(get_class() , $key);
Expand Down
2 changes: 1 addition & 1 deletion lib/net/authorize/api/contract/v1/ArrayOfSettingType.php
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ function ($val){
// Json Set Code
public function set($data)
{
if(is_array($data) || is_object($data)) {
if(is_array($data) || is_object($data)) {
$mapper = \net\authorize\util\Mapper::Instance();
foreach($data AS $key => $value) {
$classDetails = $mapper->getClass(get_class() , $key);
Expand Down
2 changes: 1 addition & 1 deletion lib/net/authorize/api/contract/v1/AuDeleteType.php
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ function ($val){
// Json Set Code
public function set($data)
{
if(is_array($data) || is_object($data)) {
if(is_array($data) || is_object($data)) {
$mapper = \net\authorize\util\Mapper::Instance();
foreach($data AS $key => $value) {
$classDetails = $mapper->getClass(get_class() , $key);
Expand Down
2 changes: 1 addition & 1 deletion lib/net/authorize/api/contract/v1/AuDetailsType.php
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ function ($val){
// Json Set Code
public function set($data)
{
if(is_array($data) || is_object($data)) {
if(is_array($data) || is_object($data)) {
$mapper = \net\authorize\util\Mapper::Instance();
foreach($data AS $key => $value) {
$classDetails = $mapper->getClass(get_class() , $key);
Expand Down
2 changes: 1 addition & 1 deletion lib/net/authorize/api/contract/v1/AuResponseType.php
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ function ($val){
// Json Set Code
public function set($data)
{
if(is_array($data) || is_object($data)) {
if(is_array($data) || is_object($data)) {
$mapper = \net\authorize\util\Mapper::Instance();
foreach($data AS $key => $value) {
$classDetails = $mapper->getClass(get_class() , $key);
Expand Down
2 changes: 1 addition & 1 deletion lib/net/authorize/api/contract/v1/AuUpdateType.php
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ function ($val){
// Json Set Code
public function set($data)
{
if(is_array($data) || is_object($data)) {
if(is_array($data) || is_object($data)) {
$mapper = \net\authorize\util\Mapper::Instance();
foreach($data AS $key => $value) {
$classDetails = $mapper->getClass(get_class() , $key);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class AuthenticateTestResponse extends ANetApiResponseType
// Json Set Code
public function set($data)
{
if(is_array($data) || is_object($data)) {
if(is_array($data) || is_object($data)) {
$mapper = \net\authorize\util\Mapper::Instance();
foreach($data AS $key => $value) {
$classDetails = $mapper->getClass(get_class() , $key);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ function ($val){
// Json Set Code
public function set($data)
{
if(is_array($data) || is_object($data)) {
if(is_array($data) || is_object($data)) {
$mapper = \net\authorize\util\Mapper::Instance();
foreach($data AS $key => $value) {
$classDetails = $mapper->getClass(get_class() , $key);
Expand Down
2 changes: 1 addition & 1 deletion lib/net/authorize/api/contract/v1/BankAccountType.php
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ function ($val){
// Json Set Code
public function set($data)
{
if(is_array($data) || is_object($data)) {
if(is_array($data) || is_object($data)) {
$mapper = \net\authorize\util\Mapper::Instance();
foreach($data AS $key => $value) {
$classDetails = $mapper->getClass(get_class() , $key);
Expand Down
2 changes: 1 addition & 1 deletion lib/net/authorize/api/contract/v1/BatchDetailsType.php
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ function ($val){
// Json Set Code
public function set($data)
{
if(is_array($data) || is_object($data)) {
if(is_array($data) || is_object($data)) {
$mapper = \net\authorize\util\Mapper::Instance();
foreach($data AS $key => $value) {
$classDetails = $mapper->getClass(get_class() , $key);
Expand Down
2 changes: 1 addition & 1 deletion lib/net/authorize/api/contract/v1/BatchStatisticType.php
Original file line number Diff line number Diff line change
Expand Up @@ -617,7 +617,7 @@ function ($val){
// Json Set Code
public function set($data)
{
if(is_array($data) || is_object($data)) {
if(is_array($data) || is_object($data)) {
$mapper = \net\authorize\util\Mapper::Instance();
foreach($data AS $key => $value) {
$classDetails = $mapper->getClass(get_class() , $key);
Expand Down
2 changes: 1 addition & 1 deletion lib/net/authorize/api/contract/v1/CardArtType.php
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ function ($val){
// Json Set Code
public function set($data)
{
if(is_array($data) || is_object($data)) {
if(is_array($data) || is_object($data)) {
$mapper = \net\authorize\util\Mapper::Instance();
foreach($data AS $key => $value) {
$classDetails = $mapper->getClass(get_class() , $key);
Expand Down
2 changes: 1 addition & 1 deletion lib/net/authorize/api/contract/v1/CcAuthenticationType.php
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ function ($val){
// Json Set Code
public function set($data)
{
if(is_array($data) || is_object($data)) {
if(is_array($data) || is_object($data)) {
$mapper = \net\authorize\util\Mapper::Instance();
foreach($data AS $key => $value) {
$classDetails = $mapper->getClass(get_class() , $key);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ public function setValidationDirectResponse($validationDirectResponse)
// Json Set Code
public function set($data)
{
if(is_array($data) || is_object($data)) {
if(is_array($data) || is_object($data)) {
$mapper = \net\authorize\util\Mapper::Instance();
foreach($data AS $key => $value) {
$classDetails = $mapper->getClass(get_class() , $key);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ public function setValidationDirectResponseList(array $validationDirectResponseL
// Json Set Code
public function set($data)
{
if(is_array($data) || is_object($data)) {
if(is_array($data) || is_object($data)) {
$mapper = \net\authorize\util\Mapper::Instance();
foreach($data AS $key => $value) {
$classDetails = $mapper->getClass(get_class() , $key);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public function setDirectResponse($directResponse)
// Json Set Code
public function set($data)
{
if(is_array($data) || is_object($data)) {
if(is_array($data) || is_object($data)) {
$mapper = \net\authorize\util\Mapper::Instance();
foreach($data AS $key => $value) {
$classDetails = $mapper->getClass(get_class() , $key);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public function setCustomerAddressId($customerAddressId)
// Json Set Code
public function set($data)
{
if(is_array($data) || is_object($data)) {
if(is_array($data) || is_object($data)) {
$mapper = \net\authorize\util\Mapper::Instance();
foreach($data AS $key => $value) {
$classDetails = $mapper->getClass(get_class() , $key);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ function ($val){
// Json Set Code
public function set($data)
{
if(is_array($data) || is_object($data)) {
if(is_array($data) || is_object($data)) {
$mapper = \net\authorize\util\Mapper::Instance();
foreach($data AS $key => $value) {
$classDetails = $mapper->getClass(get_class() , $key);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public function setProfileResponse(\net\authorize\api\contract\v1\CreateProfileR
// Json Set Code
public function set($data)
{
if(is_array($data) || is_object($data)) {
if(is_array($data) || is_object($data)) {
$mapper = \net\authorize\util\Mapper::Instance();
foreach($data AS $key => $value) {
$classDetails = $mapper->getClass(get_class() , $key);
Expand Down
2 changes: 1 addition & 1 deletion lib/net/authorize/api/contract/v1/CreditCardMaskedType.php
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ function ($val){
// Json Set Code
public function set($data)
{
if(is_array($data) || is_object($data)) {
if(is_array($data) || is_object($data)) {
$mapper = \net\authorize\util\Mapper::Instance();
foreach($data AS $key => $value) {
$classDetails = $mapper->getClass(get_class() , $key);
Expand Down
2 changes: 1 addition & 1 deletion lib/net/authorize/api/contract/v1/CreditCardSimpleType.php
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ function ($val){
// Json Set Code
public function set($data)
{
if(is_array($data) || is_object($data)) {
if(is_array($data) || is_object($data)) {
$mapper = \net\authorize\util\Mapper::Instance();
foreach($data AS $key => $value) {
$classDetails = $mapper->getClass(get_class() , $key);
Expand Down
2 changes: 1 addition & 1 deletion lib/net/authorize/api/contract/v1/CreditCardTrackType.php
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ function ($val){
// Json Set Code
public function set($data)
{
if(is_array($data) || is_object($data)) {
if(is_array($data) || is_object($data)) {
$mapper = \net\authorize\util\Mapper::Instance();
foreach($data AS $key => $value) {
$classDetails = $mapper->getClass(get_class() , $key);
Expand Down
2 changes: 1 addition & 1 deletion lib/net/authorize/api/contract/v1/CreditCardType.php
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ function ($val){
// Json Set Code
public function set($data)
{
if(is_array($data) || is_object($data)) {
if(is_array($data) || is_object($data)) {
$mapper = \net\authorize\util\Mapper::Instance();
foreach($data AS $key => $value) {
$classDetails = $mapper->getClass(get_class() , $key);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ function ($val){
// Json Set Code
public function set($data)
{
if(is_array($data) || is_object($data)) {
if(is_array($data) || is_object($data)) {
$mapper = \net\authorize\util\Mapper::Instance();
foreach($data AS $key => $value) {
$classDetails = $mapper->getClass(get_class() , $key);
Expand Down
2 changes: 1 addition & 1 deletion lib/net/authorize/api/contract/v1/CustomerAddressType.php
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ function ($val){
// Json Set Code
public function set($data)
{
if(is_array($data) || is_object($data)) {
if(is_array($data) || is_object($data)) {
$mapper = \net\authorize\util\Mapper::Instance();
foreach($data AS $key => $value) {
$classDetails = $mapper->getClass(get_class() , $key);
Expand Down
2 changes: 1 addition & 1 deletion lib/net/authorize/api/contract/v1/CustomerDataType.php
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ function ($val){
// Json Set Code
public function set($data)
{
if(is_array($data) || is_object($data)) {
if(is_array($data) || is_object($data)) {
$mapper = \net\authorize\util\Mapper::Instance();
foreach($data AS $key => $value) {
$classDetails = $mapper->getClass(get_class() , $key);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ function ($val){
// Json Set Code
public function set($data)
{
if(is_array($data) || is_object($data)) {
if(is_array($data) || is_object($data)) {
$mapper = \net\authorize\util\Mapper::Instance();
foreach($data AS $key => $value) {
$classDetails = $mapper->getClass(get_class() , $key);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ function ($val){
// Json Set Code
public function set($data)
{
if(is_array($data) || is_object($data)) {
if(is_array($data) || is_object($data)) {
$mapper = \net\authorize\util\Mapper::Instance();
foreach($data AS $key => $value) {
$classDetails = $mapper->getClass(get_class() , $key);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ function ($val){
// Json Set Code
public function set($data)
{
if(is_array($data) || is_object($data)) {
if(is_array($data) || is_object($data)) {
$mapper = \net\authorize\util\Mapper::Instance();
foreach($data AS $key => $value) {
$classDetails = $mapper->getClass(get_class() , $key);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ function ($val){
// Json Set Code
public function set($data)
{
if(is_array($data) || is_object($data)) {
if(is_array($data) || is_object($data)) {
$mapper = \net\authorize\util\Mapper::Instance();
foreach($data AS $key => $value) {
$classDetails = $mapper->getClass(get_class() , $key);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ function ($val){
// Json Set Code
public function set($data)
{
if(is_array($data) || is_object($data)) {
if(is_array($data) || is_object($data)) {
$mapper = \net\authorize\util\Mapper::Instance();
foreach($data AS $key => $value) {
$classDetails = $mapper->getClass(get_class() , $key);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ function ($val){
// Json Set Code
public function set($data)
{
if(is_array($data) || is_object($data)) {
if(is_array($data) || is_object($data)) {
$mapper = \net\authorize\util\Mapper::Instance();
foreach($data AS $key => $value) {
$classDetails = $mapper->getClass(get_class() , $key);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ function ($val){
// Json Set Code
public function set($data)
{
if(is_array($data) || is_object($data)) {
if(is_array($data) || is_object($data)) {
$mapper = \net\authorize\util\Mapper::Instance();
foreach($data AS $key => $value) {
$classDetails = $mapper->getClass(get_class() , $key);
Expand Down
Loading