symplely/hyper

View on GitHub
Request/PartInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Async\Request;

interface PartInterface
{
    /**
     * Get the content disposition for multi part.
     *
     * @param string $boundary
     * @param string $name
     */
    public function getMultiPart(string $boundary, string $name);
}