1234567891011121314151617181920212223242526 |
- <?php
- namespace Symfony\Component\VarDumper\Caster;
- class ImgStub extends ConstStub
- {
- public function __construct(string $data, string $contentType, string $size)
- {
- $this->value = '';
- $this->attr['img-data'] = $data;
- $this->attr['img-size'] = $size;
- $this->attr['content-type'] = $contentType;
- }
- }
|