Skip to content

Commit

Permalink
f
Browse files Browse the repository at this point in the history
  • Loading branch information
beatrycze-volk committed Dec 12, 2024
1 parent b0b5eb5 commit 1ae931f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Classes/Common/MetsDocument.php
Original file line number Diff line number Diff line change
Expand Up @@ -1351,6 +1351,9 @@ protected function magicGetFileGrps(): array
}

// Are there any fulltext files available?
var_dump($this->getUseGroups());

Check warning on line 1354 in Classes/Common/MetsDocument.php

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

Classes/Common/MetsDocument.php#L1354

The use of function var_dump() is discouraged
var_dump($this->fileGrps);

Check warning on line 1355 in Classes/Common/MetsDocument.php

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

Classes/Common/MetsDocument.php#L1355

The use of function var_dump() is discouraged
var_dump(array_intersect($this->getUseGroup('fileGrpFulltext'), $this->fileGrps) !== []);

Check warning on line 1356 in Classes/Common/MetsDocument.php

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

Classes/Common/MetsDocument.php#L1356

The use of function var_dump() is discouraged
if (
!empty($this->getUseGroup('fileGrpFulltext'))
&& array_intersect($this->getUseGroup('fileGrpFulltext'), $this->fileGrps) !== []
Expand Down

0 comments on commit 1ae931f

Please sign in to comment.