Skip to content

Commit 3523921

Browse files
committed
[CI] Baseline
1 parent b912088 commit 3523921

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

phpstan-baseline.neon

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10692,12 +10692,6 @@ parameters:
1069210692
count: 1
1069310693
path: src/lib/FieldType/BinaryBase/Type.php
1069410694

10695-
-
10696-
message: '#^Property Ibexa\\Core\\FieldType\\BinaryBase\\Value\:\:\$id \(string\) in isset\(\) is not nullable\.$#'
10697-
identifier: isset.property
10698-
count: 1
10699-
path: src/lib/FieldType/BinaryBase/Type.php
10700-
1070110695
-
1070210696
message: '#^Method Ibexa\\Core\\FieldType\\BinaryBase\\Value\:\:__construct\(\) has parameter \$fileData with no value type specified in iterable type array\.$#'
1070310697
identifier: missingType.iterableValue

src/lib/FieldType/BinaryBase/Value.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* Base value for binary field types.
1313
*
1414
* @property string $path Used for BC with 5.0 (EZP-20948). Equivalent to $id.
15-
* @property-read string $id Unique file ID, set by storage. Read only since 5.3 (EZP-22808).
15+
* @property-read string|null $id Unique file ID, set by storage. Read only since 5.3 (EZP-22808).
1616
*/
1717
abstract class Value extends BaseValue
1818
{

0 commit comments

Comments
 (0)