phug-php/phug

View on GitHub
src/Phug/Invoker/InvokerInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
<?php

namespace Phug;

interface InvokerInterface
{
    /**
     * Invoke callbacks that match the passed event.
     *
     * @param object $event instance of callback input.
     *
     * @return array
     */
    public function invoke($event);
}