php 7.4 dev branch
This commit is contained in:
17
core/Configuration/KeyData.class.php
Normal file
17
core/Configuration/KeyData.class.php
Normal file
@@ -0,0 +1,17 @@
|
||||
<?php
|
||||
|
||||
namespace Configuration;
|
||||
|
||||
class KeyData {
|
||||
|
||||
protected string $key;
|
||||
|
||||
public function __construct(string $key) {
|
||||
$this->key = $key;
|
||||
}
|
||||
|
||||
public function getKey() {
|
||||
return $this->key;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user