File manager - Edit - /home/premiey/www/wp-content/plugins/ameliabooking/vendor/php-http/message/src/StreamFactory/DiactorosStreamFactory.php
Back
<?php namespace AmeliaHttp\Message\StreamFactory; use AmeliaHttp\Message\StreamFactory; use AmeliaPsr\Http\Message\StreamInterface; use Zend\Diactoros\Stream; /** * Creates Diactoros streams. * * @author Михаил Красильников <m.krasilnikov@yandex.ru> */ final class DiactorosStreamFactory implements StreamFactory { /** * {@inheritdoc} */ public function createStream($body = null) { if ($body instanceof StreamInterface) { return $body; } if (is_resource($body)) { return new Stream($body); } $stream = new Stream('php://memory', 'rw'); if (null !== $body && '' !== $body) { $stream->write((string) $body); } return $stream; } }
| ver. 1.4 |
Github
|
.
| PHP 5.4.45 | Generation time: 0 |
proxy
|
phpinfo
|
Settings