Subiendo proyecto completo sin restricciones de git ignore
This commit is contained in:
40
vendor/iyzico/iyzipay-php/src/Iyzipay/Options.php
vendored
Normal file
40
vendor/iyzico/iyzipay-php/src/Iyzipay/Options.php
vendored
Normal file
@@ -0,0 +1,40 @@
|
||||
<?php
|
||||
|
||||
namespace Iyzipay;
|
||||
|
||||
class Options
|
||||
{
|
||||
private $apiKey;
|
||||
private $secretKey;
|
||||
private $baseUrl;
|
||||
|
||||
public function getApiKey()
|
||||
{
|
||||
return $this->apiKey;
|
||||
}
|
||||
|
||||
public function setApiKey($apiKey)
|
||||
{
|
||||
$this->apiKey = $apiKey;
|
||||
}
|
||||
|
||||
public function getSecretKey()
|
||||
{
|
||||
return $this->secretKey;
|
||||
}
|
||||
|
||||
public function setSecretKey($secretKey)
|
||||
{
|
||||
$this->secretKey = $secretKey;
|
||||
}
|
||||
|
||||
public function getBaseUrl()
|
||||
{
|
||||
return $this->baseUrl;
|
||||
}
|
||||
|
||||
public function setBaseUrl($baseUrl)
|
||||
{
|
||||
$this->baseUrl = $baseUrl;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user