Subiendo proyecto completo sin restricciones de git ignore
This commit is contained in:
76
vendor/anandsiddharth/laravel-paytm-wallet/src/PaytmWalletManager.php
vendored
Normal file
76
vendor/anandsiddharth/laravel-paytm-wallet/src/PaytmWalletManager.php
vendored
Normal file
@@ -0,0 +1,76 @@
|
||||
<?php
|
||||
|
||||
namespace Anand\LaravelPaytmWallet;
|
||||
use Illuminate\Support\Manager;
|
||||
use Illuminate\Http\Request;
|
||||
class PaytmWalletManager extends Manager implements Contracts\Factory{
|
||||
|
||||
|
||||
protected $config;
|
||||
|
||||
|
||||
|
||||
public function with($driver){
|
||||
return $this->driver($driver);
|
||||
}
|
||||
|
||||
protected function createReceiveDriver(){
|
||||
$this->config = $this->container['config']['services.paytm-wallet'];
|
||||
|
||||
return $this->buildProvider(
|
||||
'Anand\LaravelPaytmWallet\Providers\ReceivePaymentProvider',
|
||||
$this->config
|
||||
);
|
||||
}
|
||||
|
||||
protected function createStatusDriver(){
|
||||
$this->config = $this->container['config']['services.paytm-wallet'];
|
||||
return $this->buildProvider(
|
||||
'Anand\LaravelPaytmWallet\Providers\StatusCheckProvider',
|
||||
$this->config
|
||||
);
|
||||
}
|
||||
|
||||
protected function createBalanceDriver(){
|
||||
$this->config = $this->container['config']['services.paytm-wallet'];
|
||||
return $this->buildProvider(
|
||||
'Anand\LaravelPaytmWallet\Providers\BalanceCheckProvider',
|
||||
$this->config
|
||||
);
|
||||
}
|
||||
|
||||
protected function createAppDriver(){
|
||||
$this->config = $this->container['config']['services.paytm-wallet'];
|
||||
return $this->buildProvider(
|
||||
'Anand\LaravelPaytmWallet\Providers\PaytmAppProvider',
|
||||
$this->config
|
||||
);
|
||||
}
|
||||
|
||||
protected function createRefundDriver() {
|
||||
$this->config = $this->container['config']['services.paytm-wallet'];
|
||||
return $this->buildProvider(
|
||||
'Anand\LaravelPaytmWallet\Providers\RefundPaymentProvider',
|
||||
$this->config
|
||||
);
|
||||
}
|
||||
|
||||
protected function createRefundStatusDriver(){
|
||||
$this->config = $this->container['config']['services.paytm-wallet'];
|
||||
return $this->buildProvider(
|
||||
'Anand\LaravelPaytmWallet\Providers\RefundStatusCheckProvider',
|
||||
$this->config
|
||||
);
|
||||
}
|
||||
|
||||
public function getDefaultDriver(){
|
||||
throw new \Exception('No driver was specified. - Laravel Paytm Wallet');
|
||||
}
|
||||
|
||||
public function buildProvider($provider, $config){
|
||||
return new $provider(
|
||||
$this->container['request'],
|
||||
$config
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user