mirror of
https://github.com/php/phd.git
synced 2026-04-24 07:28:04 +02: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;
|
|
}
|
|
}
|