Skip to content

Commit 9574f1c

Browse files
author
Jeffrey Brown
committed
removed extraneous comments and variables
1 parent 7561539 commit 9574f1c

File tree

1 file changed

+11
-6
lines changed

1 file changed

+11
-6
lines changed

src/Message/AbstractRequest.php

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ abstract class AbstractRequest extends BaseAbstractRequest
1313
/**
1414
* @var string
1515
*/
16-
public $subDomain;
1716
protected $liveEndpoint = '.globalewallet.com/eWalletWS/ws_JsonAdapter.aspx';
1817

1918
/**
@@ -86,6 +85,17 @@ public function setSubdomain($value)
8685
{
8786
return $this->setParameter('Subdomain', $value);
8887
}
88+
89+
public function getautoLoadPayment()
90+
{
91+
return $this->getParameter('autoLoadPayment');
92+
}
93+
94+
public function setautoLoadPayment($value)
95+
{
96+
return $this->setParameter('autoLoadPayment', $value);
97+
}
98+
8999

90100
/**
91101
* @return Array
@@ -100,15 +110,10 @@ public function getBaseData()
100110
return $data;
101111
}
102112

103-
//mixed str_replace ( mixed $search , mixed $replace , mixed $subject [, int &$count ] )
104113
/**
105114
* @return string
106115
*/
107116
/*
108-
protected function getEndpoint()
109-
{
110-
return $this->getTestMode() ? $this->testEndpoint : $this->liveEndpoint;
111-
}
112117
*/
113118
protected function getEndpoint()
114119
{

0 commit comments

Comments
 (0)