Yaffs site version 1.1
[yaffs-website] / vendor / psy / psysh / src / Psy / Command / ListCommand / ClassConstantEnumerator.php
index 9a494f53fce6389eedc6e9633376b4b7e881c4ea..ff3e7ea748787b57436148f953be887e1ff8081e 100644 (file)
@@ -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;