Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
A709197 committed Oct 31, 2024
1 parent d3b0b40 commit 7673e9a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion application/controllers/DossierController.php
Original file line number Diff line number Diff line change
Expand Up @@ -3210,7 +3210,7 @@ public function effectifsDegagementsDossierAction(): void

foreach ($rubriques as $rubrique) {
$champs = $rubrique['CHAMPS'];

foreach ($champs as $champ) {
if ($service_champ->hasValue($champ)) {
$hasData = true;
Expand Down
2 changes: 1 addition & 1 deletion application/services/DossierEffectifsDegagements.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public function copyValeurs(int $idDossier, array $rubriques): void

continue;
}

foreach ($champ['FILS']['VALEURS'] as $index => $champs) {
foreach ($champs as $idChamp => $data) {
$this->saveValeurChamp(
Expand Down
4 changes: 2 additions & 2 deletions phpstan-baseline.neon
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ parameters:

-
message: "#^Access to an undefined property Zend_Controller_Action_HelperBroker\\:\\:\\$viewRenderer\\.$#"
count: 15
count: 16
path: application/controllers/DossierController.php

-
Expand Down Expand Up @@ -557,7 +557,7 @@ parameters:

-
message: "#^Access to an undefined property Zend_View_Interface\\:\\:\\$nbEtab\\.$#"
count: 1
count: 2
path: application/controllers/DossierController.php

-
Expand Down

0 comments on commit 7673e9a

Please sign in to comment.