Home
last modified time | relevance | path

Searched refs:stream_factory (Results 1 – 7 of 7) sorted by relevance

/webtrees/app/Http/Middleware/
H A DCompressResponse.php53 protected StreamFactoryInterface $stream_factory; variable in Fisharebest\\Webtrees\\Http\\Middleware\\CompressResponse
56 * @param StreamFactoryInterface $stream_factory
58 public function __construct(StreamFactoryInterface $stream_factory) argument
60 $this->stream_factory = $stream_factory;
92 $stream = $this->stream_factory->createStream($content);
/webtrees/app/Http/RequestHandlers/
H A DSynchronizeTrees.php47 private StreamFactoryInterface $stream_factory; variable in Fisharebest\\Webtrees\\Http\\RequestHandlers\\SynchronizeTrees
55 * @param StreamFactoryInterface $stream_factory
61 StreamFactoryInterface $stream_factory, argument
66 $this->stream_factory = $stream_factory;
91 $stream = $this->stream_factory->createStreamFromResource($resource);
H A DImportGedcomAction.php47 private StreamFactoryInterface $stream_factory; variable in Fisharebest\\Webtrees\\Http\\RequestHandlers\\ImportGedcomAction
52 * @param StreamFactoryInterface $stream_factory
55 public function __construct(StreamFactoryInterface $stream_factory, TreeService $tree_service) argument
58 $this->stream_factory = $stream_factory;
109 $stream = $this->stream_factory->createStreamFromResource($resource);
H A DMapDataImportAction.php61 private StreamFactoryInterface $stream_factory; variable in Fisharebest\\Webtrees\\Http\\RequestHandlers\\MapDataImportAction
64 * @param StreamFactoryInterface $stream_factory
66 public function __construct(StreamFactoryInterface $stream_factory) argument
68 $this->stream_factory = $stream_factory;
116 $fp = $this->stream_factory->createStreamFromResource($resource)->detach();
/webtrees/app/Factories/
H A DResponseFactory.php47 private StreamFactoryInterface $stream_factory; variable in Fisharebest\\Webtrees\\Factories\\ResponseFactory
51 * @param StreamFactoryInterface $stream_factory
53 …_construct(PSR17ResponseFactoryInterface $response_factory, StreamFactoryInterface $stream_factory) argument
56 $this->stream_factory = $stream_factory;
114 $stream = $this->stream_factory->createStream($content);
/webtrees/app/Services/
H A DGedcomExportService.php84 private StreamFactoryInterface $stream_factory; variable in Fisharebest\\Webtrees\\Services\\GedcomExportService
86 …ion __construct(ResponseFactoryInterface $response_factory, StreamFactoryInterface $stream_factory) argument
89 $this->stream_factory = $stream_factory;
116 $stream = $this->stream_factory->createStreamFromResource($resource);
151 $stream = $this->stream_factory->createStreamFromFile($temp_zip_file);
/webtrees/tests/
H A DTestCase.php204 $stream_factory = Registry::container()->get(StreamFactoryInterface::class);
207 $stream = $stream_factory->createStreamFromFile($filename);