for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Jarvis\Skill\EventBroadcaster;
/**
* @author Eric Chau <[email protected]>
*/
class PermanentEvent extends SimpleEvent implements PermanentEventInterface
{
* {@inheritdoc}
public function isPermanent(): bool
return true;
}