File tree Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 9292
9393 - name : Upload to Codecov
9494 uses : codecov/codecov-action@v5
95+ with :
96+ token : ${{ secrets.CODECOV_TOKEN }}
97+ slug : PhpGt/Http
9598
9699 phpstan :
97100 runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 2424 <rule ref =" Generic.Files.OneObjectStructurePerFile" />
2525 <rule ref =" Generic.Files.OneTraitPerFile" />
2626 <rule ref =" Generic.Formatting.DisallowMultipleStatements" />
27- <rule ref =" Generic.Formatting.NoSpaceAfterCast" />
2827 <rule ref =" Generic.Functions.FunctionCallArgumentSpacing" />
2928 <rule ref =" Generic.Functions.OpeningFunctionBraceKernighanRitchie" />
3029 <rule ref =" Generic.Metrics.CyclomaticComplexity" />
Original file line number Diff line number Diff line change @@ -93,7 +93,7 @@ public function withCookieParams(array $cookies):self {
9393 * @return array<string, string|array<string>>
9494 */
9595 public function getQueryParams ():array {
96- parse_str ($ this ->serverData ["QUERY_STRING " ], $ params );
96+ parse_str ($ this ->serverData ["QUERY_STRING " ] ?? "" , $ params );
9797 /** @var array<string, string|array<string>> $params */
9898 return $ params ;
9999 }
You can’t perform that action at this time.
0 commit comments