X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs-website;a=blobdiff_plain;f=vendor%2Fpsy%2Fpsysh%2Fsrc%2FPsy%2FCommand%2FListCommand%2FClassConstantEnumerator.php;h=ff3e7ea748787b57436148f953be887e1ff8081e;hp=9a494f53fce6389eedc6e9633376b4b7e881c4ea;hb=eba34333e3c89f208d2f72fa91351ad019a71583;hpb=a2bd1bf0c2c1f1a17d188f4dc0726a45494cefae;ds=sidebyside diff --git a/vendor/psy/psysh/src/Psy/Command/ListCommand/ClassConstantEnumerator.php b/vendor/psy/psysh/src/Psy/Command/ListCommand/ClassConstantEnumerator.php index 9a494f53f..ff3e7ea74 100644 --- a/vendor/psy/psysh/src/Psy/Command/ListCommand/ClassConstantEnumerator.php +++ b/vendor/psy/psysh/src/Psy/Command/ListCommand/ClassConstantEnumerator.php @@ -32,7 +32,7 @@ class ClassConstantEnumerator extends Enumerator // We can only list constants on actual class (or object) reflectors. if (!$reflector instanceof \ReflectionClass) { - // TODO: handle ReflectionExtension as well + // @todo handle ReflectionExtension as well return; } @@ -77,7 +77,7 @@ class ClassConstantEnumerator extends Enumerator $constants[$name] = $constReflector; } - // TODO: this should be natcasesort + // @todo this should be natcasesort ksort($constants); return $constants;