BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
imagivibe
Root
/
home
/
imagivibe
/
public_html
/
app.imagivibe.com
/
vendor
/
iyzico
/
iyzipay-php
/
src
/
Iyzipay
📤 Upload
📝 New File
📁 New Folder
Close
Editing: Options.php
<?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; } }
Save
Cancel