tolerant-php-parser
tolerant-php-parser copied to clipboard
Messy usage of static property access
trafficstars
I saw a lot of messy access to static properties in the code base, i.e. static properties are accessed on the instance with -> or on the instance with :: instead of on the class with ::
Is this bad practice? I know we use this a lot working with child_names where we don't know the class.
I would make an exception for child_names, but I saw it in other places too
Is there any activity here?