|
1
|
<?php |
|
2
|
|
|
3
|
namespace FSVendor\Octolize\Csat; |
|
4
|
|
|
5
|
class CsatCodeFromString implements CsatCode |
|
6
|
{ |
|
7
|
private string $code; |
|
8
|
public function __construct(string $code) |
|
9
|
{ |
|
10
|
$this->code = $code; |
|
11
|
} |
|
12
|
public function get_csat_code() |
|
13
|
{ |
|
14
|
return $this->code; |
|
15
|
} |
|
16
|
} |
|
17
|
|