Just testing the plugin, and found one issue with too many newlines between class declaration and the following open brace. I have the following code fragment:
class Custom_Plugin_NotificationPlaceholderSource extends Notification_Manager_DefaultPlaceholderSource {
# ...
}
Which gets transformed to the following, which contains one newline too many:
class Custom_Plugin_NotificationPlaceholderSource
extends Notification_Manager_DefaultPlaceholderSource
{
# ...
}
Just testing the plugin, and found one issue with too many newlines between class declaration and the following open brace. I have the following code fragment:
Which gets transformed to the following, which contains one newline too many: