Skip to content

Commit

Permalink
Fix PHP 8.2 & 8.3 phpstan errors
Browse files Browse the repository at this point in the history
  • Loading branch information
yhabteab committed Nov 20, 2023
1 parent c12b608 commit 8918137
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 33 deletions.
1 change: 1 addition & 0 deletions application/controllers/UsageController.php
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ public function indexAction()
$this->addControl($searchBar);

$this->handleFormatRequest($targets, function (Query $targets) {
/** @var X509Certificate $usage */
foreach ($targets as $usage) {
$usage->valid_from = $usage->valid_from->format('l F jS, Y H:i:s e');
$usage->valid_to = $usage->valid_to->format('l F jS, Y H:i:s e');
Expand Down
36 changes: 3 additions & 33 deletions phpstan-baseline-common.neon
Original file line number Diff line number Diff line change
Expand Up @@ -241,23 +241,8 @@ parameters:
path: application/controllers/SniController.php

-
message: "#^Cannot access property \\$chain on mixed\\.$#"
count: 4
path: application/controllers/UsageController.php

-
message: "#^Cannot access property \\$hostname on mixed\\.$#"
count: 1
path: application/controllers/UsageController.php

-
message: "#^Cannot access property \\$ip on mixed\\.$#"
count: 1
path: application/controllers/UsageController.php

-
message: "#^Cannot access property \\$port on mixed\\.$#"
count: 1
message: "#^Cannot access property \\$target on mixed\\.$#"
count: 3
path: application/controllers/UsageController.php

-
Expand All @@ -266,20 +251,10 @@ parameters:
path: application/controllers/UsageController.php

-
message: "#^Cannot access property \\$valid_from on mixed\\.$#"
count: 2
path: application/controllers/UsageController.php

-
message: "#^Cannot access property \\$valid_to on mixed\\.$#"
message: "#^Cannot call method format\\(\\) on mixed\\.$#"
count: 2
path: application/controllers/UsageController.php

-
message: "#^Cannot call method getExportableColumns\\(\\) on mixed\\.$#"
count: 1
path: application/controllers/UsageController.php

-
message: "#^Method Icinga\\\\Module\\\\X509\\\\Controllers\\\\UsageController\\:\\:completeAction\\(\\) has no return type specified\\.$#"
count: 1
Expand All @@ -295,11 +270,6 @@ parameters:
count: 1
path: application/controllers/UsageController.php

-
message: "#^Parameter \\#1 \\$iterator of function iterator_to_array expects Traversable, mixed given\\.$#"
count: 1
path: application/controllers/UsageController.php

-
message: "#^Parameter \\#1 \\$peekAhead of method ipl\\\\Orm\\\\Query\\:\\:peekAhead\\(\\) expects bool, null given\\.$#"
count: 1
Expand Down

0 comments on commit 8918137

Please sign in to comment.