Which of these best describes PSR-12?
- A A coding style standard for PHP
- B An autoloading specification
- C A logging interface
- D An HTTP message interface
Answer
A coding style standard for PHP
PSR-4 covers autoloading, PSR-3 logging and PSR-7 HTTP messages. Style should be enforced automatically by a tool such as PHP-CS-Fixer.





