Newscoop\Storage\Item::__construct PHP Метод

__construct() публичный Метод

public __construct ( string $key, Storage $storage )
$key string
$storage Newscoop\Storage
    public function __construct($key, \Newscoop\Storage $storage)
    {
        $this->key = (string) $key;
        if (empty($key)) {
            throw new \InvalidArgumentException($key);
        }
        $this->storage = $storage;
    }