File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -110,11 +110,11 @@ private function buildApiProperty(): ApiProperty
110110
111111 foreach (self ::FIXTURES as $ parameter => $ value ) {
112112 if (method_exists ($ this , 'with ' .ucfirst ($ parameter ))) {
113- $ value = $ this ->{'with ' .ucfirst ($ parameter )}($ value , self ::FIXTURES );
113+ $ value = $ this ->{'with ' .ucfirst ($ parameter )}($ value , self ::FIXTURES ); // @phpstan-ignore-line
114114 }
115115
116116 if (method_exists ($ property , 'with ' .ucfirst ($ parameter ))) {
117- $ property = $ property ->{'with ' .ucfirst ($ parameter )}($ value , self ::FIXTURES );
117+ $ property = $ property ->{'with ' .ucfirst ($ parameter )}($ value , self ::FIXTURES ); // @phpstan-ignore-line
118118 continue ;
119119 }
120120
Original file line number Diff line number Diff line change @@ -572,11 +572,11 @@ private function buildApiResources(): array
572572
573573 foreach ($ fixtures as $ parameter => $ value ) {
574574 if (method_exists ($ this , 'with ' .ucfirst ($ parameter ))) {
575- $ value = $ this ->{'with ' .ucfirst ($ parameter )}($ value , $ fixtures );
575+ $ value = $ this ->{'with ' .ucfirst ($ parameter )}($ value , $ fixtures ); // @phpstan-ignore-line
576576 }
577577
578578 if (method_exists ($ resource , 'with ' .ucfirst ($ parameter ))) {
579- $ resource = $ resource ->{'with ' .ucfirst ($ parameter )}($ value , $ fixtures );
579+ $ resource = $ resource ->{'with ' .ucfirst ($ parameter )}($ value , $ fixtures ); // @phpstan-ignore-line
580580 continue ;
581581 }
582582
You can’t perform that action at this time.
0 commit comments