| 123456789101112131415161718192021222324 |
- <?php
- namespace cx_newsletter;
- abstract class enum_converter
- implements enum_converter_interface {
- public function __construct() {
- }
- public function load_enum(mixed $target) : self {
- $this->target = $target;
- return $this;
- }
- public function get_enum() : mixed {
- return $this->target;
- }
- public abstract function load_string(string $target) : self;
- public abstract function get_string() : string;
- protected mixed $target;
- }
|