| Total Complexity | 4 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 11 | class SerialNumber extends SN |
||
| 12 | {
|
||
| 13 | private array $config=[]; |
||
| 14 | function __construct(array $config=null) |
||
| 15 | {
|
||
| 16 | if(!empty($config)) |
||
| 17 | {
|
||
| 18 | $this->setConfig($config); |
||
| 19 | } |
||
| 20 | } |
||
| 21 | public function generate($json_return = false) |
||
| 25 | } |
||
| 26 | |||
| 27 | public function setConfig(array $config) |
||
| 31 | } |
||
| 32 | |||
| 34 |