Remove spurious `@class` tags in two files
authorTimo Tijhof <krinklemail@gmail.com>
Mon, 9 Sep 2019 18:00:28 +0000 (19:00 +0100)
committerTimo Tijhof <krinklemail@gmail.com>
Mon, 9 Sep 2019 18:04:28 +0000 (19:04 +0100)
commitbf206185aace074b8d06262b21a5e99fef890f25
treea158ecacb741a4d29555bf80a0b6a00490e1fb5a
parent982027f9d5636e6c9f2bf17b020742498cc6c014
Remove spurious `@class` tags in two files

This was only used in two PHP files in all of core. It is not
needed (the block above the class keyword is naturally for that
class) and only emits a warning from Doxygen:

> PHPVersionCheck.php:35: warning: missing argument after \class.
> SpecialPageData.php:28: warning: missing argument after \class.

This is unlike JSDuck, where it is used to differentiate a function
from a constructor/class.

In Doxygen, `@class` is only used to create a virtual class within
the docs that isn't explicitly in an indexed file, and thus
requires a name.

Bug: T232104
Change-Id: Ie504a8e2b72be8f370dc0c90da6a03f64d93df2d
includes/PHPVersionCheck.php
includes/specials/SpecialPageData.php