Skip to content

Commit 7f656ee

Browse files
committed
Fix request parameter
1 parent 7da97b2 commit 7f656ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Barryvdh/Omnipay/GatewayManager.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public function gateway($class = null)
4040
$class = $class ?: $this->getDefaultGateway();
4141

4242
if(!isset($this->gateways[$class])){
43-
$gateway = $this->factory->create($class, $this->app['request']);
43+
$gateway = $this->factory->create($class, null, $this->app['request']);
4444
$gateway->initialize($this->getConfig($class));
4545
$this->gateways[$class] = $gateway;
4646
}

0 commit comments

Comments
 (0)