mirror of
https://github.com/doctrine/doctrine-website.git
synced 2026-03-23 22:32:11 +01:00
16 lines
229 B
PHP
16 lines
229 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Doctrine\Website\RST\Directive;
|
|
|
|
use Doctrine\RST\SubDirective;
|
|
|
|
class IndexDirective extends SubDirective
|
|
{
|
|
public function getName() : string
|
|
{
|
|
return 'index';
|
|
}
|
|
}
|