PHP Comments
PHP supports three comment styles. Comments are ignored by the PHP engine.
// single line# single line (shell style)/* multi-line */
PHPDoc
Documentation comments use /** ... */ with tags like @param, @return. IDEs and tools read these.