| Total Complexity | 7 |
| Total Lines | 85 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php |
||
| 22 | class Issuer { |
||
| 23 | /** |
||
| 24 | * ID of the issuer |
||
| 25 | * |
||
| 26 | * @var string|null |
||
| 27 | */ |
||
| 28 | private $id; |
||
| 29 | |||
| 30 | /** |
||
| 31 | * Name of the issuer |
||
| 32 | * |
||
| 33 | * @var string|null |
||
| 34 | */ |
||
| 35 | private $name; |
||
| 36 | |||
| 37 | /** |
||
| 38 | * Authentication URL |
||
| 39 | * |
||
| 40 | * @var string|null |
||
| 41 | */ |
||
| 42 | private $authentication_url; |
||
| 43 | |||
| 44 | /** |
||
| 45 | * Constructs and initializes an issuer |
||
| 46 | * |
||
| 47 | * @return void |
||
| 48 | */ |
||
| 49 | public function __construct() { |
||
| 50 | } |
||
| 51 | |||
| 52 | /** |
||
| 53 | * Get the ID of this issuer |
||
| 54 | * |
||
| 55 | * @return string|null |
||
| 56 | */ |
||
| 57 | public function get_id() { |
||
| 58 | return $this->id; |
||
| 59 | } |
||
| 60 | |||
| 61 | /** |
||
| 62 | * Set the ID of this issuer |
||
| 63 | * |
||
| 64 | * @param string|null $id Issuer ID. |
||
| 65 | * @return void |
||
| 66 | */ |
||
| 67 | public function set_id( $id ) { |
||
| 68 | $this->id = $id; |
||
| 69 | } |
||
| 70 | |||
| 71 | /** |
||
| 72 | * Get the name of this issuer |
||
| 73 | * |
||
| 74 | * @return string|null |
||
| 75 | */ |
||
| 76 | public function get_name() { |
||
| 77 | return $this->name; |
||
| 78 | } |
||
| 79 | |||
| 80 | /** |
||
| 81 | * Set the name of this issuer |
||
| 82 | * |
||
| 83 | * @param string|null $name Issuer name. |
||
| 84 | * @return void |
||
| 85 | */ |
||
| 86 | public function set_name( $name ) { |
||
| 87 | $this->name = $name; |
||
| 88 | } |
||
| 89 | |||
| 90 | /** |
||
| 91 | * Get the name of this issuer |
||
| 92 | * |
||
| 93 | * @return string|null |
||
| 94 | */ |
||
| 95 | public function get_authentication_url() { |
||
| 97 | } |
||
| 98 | |||
| 99 | /** |
||
| 100 | * Set the name of this issuer |
||
| 101 | * |
||
| 102 | * @param string|null $authentication_url Authentication URL. |
||
| 103 | * @return void |
||
| 104 | */ |
||
| 105 | public function set_authentication_url( $authentication_url ) { |
||
| 107 | } |
||
| 108 | } |
||
| 109 |