File tree Expand file tree Collapse file tree 4 files changed +28
-2
lines changed
Expand file tree Collapse file tree 4 files changed +28
-2
lines changed Original file line number Diff line number Diff line change 11{
22 "name" : " solapi/sdk" ,
33 "description" : " SOLAPI SDK for PHP" ,
4- "version" : " 5.0.3 " ,
4+ "version" : " 5.0.4 " ,
55 "type" : " library" ,
66 "license" : " MIT" ,
77 "autoload" : {
Original file line number Diff line number Diff line change @@ -29,4 +29,9 @@ class BaseKakaoOption
2929 * @var array 메시지 버튼 목록
3030 */
3131 public $ buttons ;
32+
33+ /**
34+ * @var string 이미지 아이디(스토리지에 업로드 된 이미지 ID)
35+ */
36+ public $ imageId ;
3237}
Original file line number Diff line number Diff line change @@ -37,6 +37,27 @@ class KakaoOption extends BaseKakaoOption
3737 */
3838 public $ buttons ;
3939
40+ /**
41+ * @var string 이미지 아이디(스토리지에 업로드 된 이미지 ID)
42+ */
43+ public $ imageId ;
44+
45+ /**
46+ * @return string
47+ */
48+ public function getImageId (): string
49+ {
50+ return $ this ->imageId ;
51+ }
52+
53+ /**
54+ * @param string $imageId
55+ */
56+ public function setImageId (string $ imageId )
57+ {
58+ $ this ->imageId = $ imageId ;
59+ }
60+
4061 /**
4162 * @return string
4263 */
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ class DefaultAgent
1616
1717 public function __construct ()
1818 {
19- $ this ->sdkVersion = 'php/5.0.3 ' ;
19+ $ this ->sdkVersion = 'php/5.0.4 ' ;
2020 $ this ->osPlatform = PHP_OS . " | " . phpversion ();
2121 }
2222}
You can’t perform that action at this time.
0 commit comments