1: <?php declare(strict_types=1);
2:
3: namespace Salient\Contract\Http;
4:
5: /**
6: * @api
7: */
8: interface HttpMultipartStreamInterface extends HttpStreamInterface
9: {
10: /**
11: * Get the stream's encapsulation boundary
12: */
13: public function getBoundary(): string;
14: }
15: