pug-php/pug-symfony

View on GitHub
src/Pug/Symfony/Contracts/InterceptorInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

declare(strict_types=1);

namespace Pug\Symfony\Contracts;

use Symfony\Contracts\EventDispatcher\Event;

interface InterceptorInterface
{
    public function intercept(Event $event);
}