Files
ops-Gazelle/app/Comment/Request.php
2020-12-27 19:00:14 +00:00

14 lines
241 B
PHP

<?php
namespace Gazelle\Comment;
class Request extends AbstractComment {
public function page(): string {
return 'requests';
}
public function pageUrl(): string {
return "requests.php?action=view&id=";
}
}