27 lines
533 B
PHP
27 lines
533 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
declare(strict_types=1);
|
||
|
|
|
||
|
|
namespace Config;
|
||
|
|
|
||
|
|
use CodeIgniter\Config\BaseConfig;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 카카오 Developers — 내 애플리케이션 — 앱 키 — JavaScript 키
|
||
|
|
* .env 예: kakao.javascriptKey = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
|
||
|
|
*/
|
||
|
|
class Kakao extends BaseConfig
|
||
|
|
{
|
||
|
|
public string $javascriptKey = '';
|
||
|
|
|
||
|
|
public function __construct()
|
||
|
|
{
|
||
|
|
parent::__construct();
|
||
|
|
|
||
|
|
$v = env('kakao.javascriptKey');
|
||
|
|
if (is_string($v) && $v !== '') {
|
||
|
|
$this->javascriptKey = $v;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|