@formatter:on
The @formatter:on tag re-enables PhpStorm's automatic code formatting from this point on, pairing with an earlier @formatter:off.
"@formatter:on" [ <Description> ]
Parsing a @formatter:on tag produces a FormatterOnTag instance. Being a pure marker, it adds nothing beyond the $name and optional $description every Tag already carries.
final class FormatterOnTag extends FlagTag {}
Associated with PhpStorm.
08 July 2026