Dhii/data-container-interface

View on GitHub
src/SetCapableInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Dhii\Data\Container;

use Dhii\Util\String\StringableInterface as Stringable;
use Psr\Container\ContainerExceptionInterface;

/**
 * Exposes means of setting data on an object.
 *
 * @since 0.2
 */
interface SetCapableInterface
{
    /**
     * Sets the value of a data member with the specified key.
     *
     * @since 0.2
     *
     * @param string|int|float|bool|Stringable $key   The key of the data member to set.
     * @param mixed                            $value The value to set.
     *
     * @throws ContainerExceptionInterface If the data could not be set.
     */
    public function set($key, $value);
}