# sync-basalam/1.10.18/includes/Infrastructure/Container/ContainerInterface.php

ووسلام – همگام سازی ووکامرس و باسلام, version 1.10.18. 21 lines.

- Page: https://pluginprobe.com/plugins/sync-basalam/1.10.18/code/includes/Infrastructure/Container/ContainerInterface.php
- Raw: https://pluginprobe.com/plugins/sync-basalam/1.10.18/raw/includes/Infrastructure/Container/ContainerInterface.php
- Modified: 2026-09-12T12:46:38+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/sync-basalam/1.10.18/code/includes/Infrastructure/Container/ContainerInterface.php#L10-L20`.

```php
<?php

namespace SyncBasalam\Infrastructure\Container;

defined('ABSPATH') || exit;

interface ContainerInterface
{
    public function bind(string $id, callable $factory): void;

    public function singleton(string $id, callable $factory): void;

    public function alias(string $alias, string $id): void;

    public function has(string $id): bool;

    public function get(string $id);

    public function provider(ServiceProviderInterface $provider): void;
}

```
