While I really don't think there's anything wrong with using the `constant()` function, it's a bit cleaner and more standard to use `defined()`. ``` php if (@constant('BRACKETPRESS_DEBUG')) { ``` becomes ``` php if ( defined('BRACKETPRESS_DEBUG')) { ```
While I really don't think there's anything wrong with using the
constant()function, it's a bit cleaner and more standard to usedefined().becomes