mirror of
https://github.com/OPSnet/Gazelle.git
synced 2026-01-17 03:04:47 -05:00
14 lines
241 B
PHP
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=";
|
|
}
|
|
}
|