src/Plugin/Gem/Invokable.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
/**
 *
 */

namespace Mvc5\Plugin\Gem;

interface Invokable
    extends Gem
{
    /**
     * @return array
     */
    function args() : array;

    /**
     * @return callable|mixed
     */
    function config();
}