blob: 2aa0cf3225c9170a0e229c77895b5a81ed24bf73 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
<?php
namespace Drupal\file\Upload;
use Symfony\Component\Validator\ConstraintViolationList;
use Symfony\Component\Validator\ConstraintViolationListInterface;
use Symfony\Component\Validator\Validator\ValidatorInterface;
/**
* An uploaded file from an input stream.
*/
final class InputStreamUploadedFile implements UploadedFileInterface {
/**
* Creates a new InputStreamUploadedFile.
*/
public function __construct(
protected readonly string $clientOriginalName,
protected readonly string $filename,
protected readonly string $realPath,
protected readonly int | false $size,
) {}
/**
* {@inheritdoc}
*/
public function getClientOriginalName(): string {
return $this->clientOriginalName;
}
/**
* {@inheritdoc}
*/
public function getSize(): int {
return $this->size;
}
/**
* {@inheritdoc}
*/
public function getRealPath(): string | false {
return $this->realPath;
}
/**
* {@inheritdoc}
*/
public function getFilename(): string {
return $this->filename;
}
/**
* {@inheritdoc}
*/
public function getPathname(): string {
throw new \BadMethodCallException(__METHOD__ . ' not implemented');
}
/**
* {@inheritdoc}
*/
public function validate(ValidatorInterface $validator, array $options = []): ConstraintViolationListInterface {
return new ConstraintViolationList();
}
}
|