mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/shipping-portal.git
synced 2026-08-20 21:14:04 +00:00
31 lines
547 B
PHP
31 lines
547 B
PHP
<?php
|
|
|
|
namespace App\Classes\Modules\HelpMenu\DataTransferObjects;
|
|
|
|
|
|
use App\Classes\General\Interfaces\DataTransferObject;
|
|
|
|
class GenerateFeedbackUrlObject implements DataTransferObject
|
|
{
|
|
|
|
/** @var string */
|
|
private $apiKey;
|
|
|
|
/**
|
|
* GenerateFeedbackUrlObject constructor.
|
|
* @param string $apiKey
|
|
*/
|
|
public function __construct(string $apiKey = "")
|
|
{
|
|
$this->apiKey = $apiKey;
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getApiKey(): string
|
|
{
|
|
return $this->apiKey;
|
|
}
|
|
|
|
} |