BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
imagivibe
Root
/
home
/
imagivibe
/
www
/
app.imagivibe.com
/
vendor
/
iyzico
/
iyzipay-php
/
src
/
Iyzipay
/
Model
📤 Upload
📝 New File
📁 New Folder
Close
Editing: C2CSubMerchantApiCredentials.php
<?php namespace Iyzipay\Model; class C2CSubMerchantApiCredentials { private string $salt; private string $secretKey; public function getSalt(): ?string { return $this->salt ?? null; } public function setSalt(string $salt): void { $this->salt = $salt; } public function getSecretKey(): ?string { return $this->secretKey ?? null; } public function setSecretKey(string $secretKey): void { $this->secretKey = $secretKey; } }
Save
Cancel