Skip to content

Commit a963b3c

Browse files
committed
Fixed namespace capitalization error with ThreeDSResponse.php
- Fixed issue where a typo caused ThreeDSResponse.php to fail autoload.
1 parent 3847a8e commit a963b3c

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

src/Message/AcceptNotification.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,8 @@
55

66
namespace Omnipay\FirstAtlanticCommerce\Message;
77

8-
require dirname(__DIR__).'/Support/ThreeDSResponse.php';
9-
108
use Omnipay\Common\Message\AbstractRequest;
11-
use OmniPay\FirstAtlanticCommerce\Support\ThreeDSResponse;
9+
use Omnipay\FirstAtlanticCommerce\Support\ThreeDSResponse;
1210

1311
class AcceptNotification extends AbstractRequest
1412
implements \Omnipay\Common\Message\NotificationInterface

src/Support/ThreeDSResponse.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* @author Ricardo Assing ([email protected])
44
*/
55

6-
namespace OmniPay\FirstAtlanticCommerce\Support;
6+
namespace Omnipay\FirstAtlanticCommerce\Support;
77

88
use Omnipay\FirstAtlanticCommerce\Constants;
99
use Omnipay\FirstAtlanticCommerce\Exception\InvalidResponseData;

0 commit comments

Comments
 (0)