death-notifier/src/main/php/com/fwdekker/deathnotifier/mediawiki/ArticleType.php

24 lines
346 B
PHP

<?php
namespace com\fwdekker\deathnotifier\mediawiki;
/**
* The type of Wikipedia article.
*/
enum ArticleType
{
/**
* A page about a real-life person.
*/
case Person;
/**
* A disambiguation page.
*/
case Disambiguation;
/**
* A page that is not one of the other types.
*/
case Other;
}