File tree Expand file tree Collapse file tree 3 files changed +11
-8
lines changed Expand file tree Collapse file tree 3 files changed +11
-8
lines changed Original file line number Diff line number Diff line change 57
57
"doctrine/doctrine-module" : " ^5.1.0" ,
58
58
"doctrine/event-manager" : " ^1.1.1" ,
59
59
"doctrine/orm" : " ^2.11.1" ,
60
- "doctrine/persistence" : " ^2.3.0" ,
60
+ "doctrine/persistence" : " ^2.3.0 || ^3.0.0 " ,
61
61
"laminas/laminas-eventmanager" : " ^3.4.0" ,
62
62
"laminas/laminas-modulemanager" : " ^2.11.0" ,
63
63
"laminas/laminas-mvc" : " ^3.3.2" ,
Original file line number Diff line number Diff line change @@ -6,9 +6,6 @@ parameters:
6
6
checkGenericClassInNonGenericObjectType : false
7
7
treatPhpDocTypesAsCertain : false
8
8
ignoreErrors :
9
- -
10
- message : ' #Method .*EntityBasedFormBuilder::createForm\(\) .* iterable type .*FormInterface#'
11
- path : src/Form/Annotation/EntityBasedFormBuilder.php
12
9
-
13
10
message : ' #Offset class-string<object> on array\{\} in isset\(\) does not exist#'
14
11
path : src/Yuml/MetadataGrapher.php
Original file line number Diff line number Diff line change @@ -59,8 +59,11 @@ public function testToOne(): void
59
59
60
60
public function testToOneMergesOptions (): void
61
61
{
62
- $ listener = $ this ->listener ;
63
- $ event = $ this ->getMetadataEvent ();
62
+ $ listener = $ this ->listener ;
63
+ $ event = $ this ->getMetadataEvent ();
64
+ /**
65
+ * @var ArrayObject<string, array<mixed>>
66
+ */
64
67
$ elementSpec = new ArrayObject ();
65
68
$ elementSpec ['spec ' ]['options ' ]['foo ' ] = 'bar ' ;
66
69
@@ -119,8 +122,11 @@ public function testToMany(): void
119
122
120
123
public function testToManyMergesOptions (): void
121
124
{
122
- $ listener = $ this ->listener ;
123
- $ event = $ this ->getMetadataEvent ();
125
+ $ listener = $ this ->listener ;
126
+ $ event = $ this ->getMetadataEvent ();
127
+ /**
128
+ * @var ArrayObject<string, array<mixed>>
129
+ */
124
130
$ elementSpec = new ArrayObject ();
125
131
$ elementSpec ['spec ' ]['options ' ]['foo ' ] = 'bar ' ;
126
132
You can’t perform that action at this time.
0 commit comments