mirror of
https://github.com/php/phd.git
synced 2026-03-24 07:02:07 +01:00
13 lines
221 B
PHP
13 lines
221 B
PHP
<?php
|
|
namespace phpdotnet\phd;
|
|
|
|
class TestIndex extends Index {
|
|
public function getNfo(): array {
|
|
return $this->nfo;
|
|
}
|
|
|
|
public function getChangelog(): array {
|
|
return $this->changelog;
|
|
}
|
|
}
|