File "ContainerInterface.php"

Full Path: /home/attunedd/public_html/wp-content/plugins/wpide/App/Container/ContainerInterface.php
File size: 214 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace WPIDE\App\Container;

interface ContainerInterface
{
    public function get($name);

    public function set(string $name, $value);

    public function call($callable, array $parameters = []);
}