# wpide/3.0/App/Container/ContainerInterface.php

WPIDE – File Manager &amp; Code Editor, version 3.0. 13 lines.

- Page: https://pluginprobe.com/plugins/wpide/3.0/code/App/Container/ContainerInterface.php
- Raw: https://pluginprobe.com/plugins/wpide/3.0/raw/App/Container/ContainerInterface.php
- Modified: 2022-07-30T20:33:10+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/wpide/3.0/code/App/Container/ContainerInterface.php#L10-L20`.

```php
<?php

namespace WPIDE\App\Container;

interface ContainerInterface
{
    public function get($name);

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

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

```
