Are there any potential pitfalls in over-documenting constant variables in PHP classes?

Over-documenting constant variables in PHP classes can lead to code redundancy and make the code harder to maintain. It is important to strike a balance between providing necessary documentation and avoiding unnecessary repetition. One way to solve this issue is to only document the constants that have complex or non-obvious values, while leaving simple and self-explanatory constants undocumented.

class ExampleClass {
    const STATUS_ACTIVE = 1;
    const STATUS_INACTIVE = 0;
    
    /**
     * Represents the active status.
     */
    const STATUS_ACTIVE = 1;
    
    /**
     * Represents the inactive status.
     */
    const STATUS_INACTIVE = 0;
}