You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (strtolower(substr($event['event'], 0, 6)) == 'phpbb.')
54
+
if (0 === stripos($event['event'], 'phpbb.'))
54
55
{
55
56
$this->output->addMessage(Output::ERROR, sprintf('The phpbb vendorname should only be used for official extensions in event names in %s. Current event name: %s', $event['file'], $event['event']));
$this->output->addMessage(Output::FATAL, sprintf('The core vendorname should not be used in event names in %s. Current event name: %s', $event['file'], $event['event']));
60
61
}
@@ -69,6 +70,6 @@ public function validateDirectory(array $dirList)
0 commit comments