Skip to content
Advertisement

phpcs: How to enforce class inheritance?

I want to make sure all classes in some dir (src/Controller/CP) extend some other class AbstractCPController.

So that

JavaScript

would show PHPCS error, and

JavaScript

would be fine.

Is that possible with PHPCS?

Advertisement

Answer

I ended up creating my own Sniff. Its far from perfect but may serve as a base for somebody in the future:

JavaScript
User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement