Skip to content

Commit

Permalink
2294: Applied coding standards
Browse files Browse the repository at this point in the history
  • Loading branch information
tuj committed Sep 9, 2024
1 parent ec562c4 commit 856d5db
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

* [PR-154](https://github.com/itk-dev/economics/pull/154)
* [PR-155](https://github.com/itk-dev/economics/pull/155)
2294: Added worker name field and added to planning overview.
* [PR-153](https://github.com/itk-dev/economics/pull/153)
* [PR-154](https://github.com/itk-dev/economics/pull/154)
2265: Changed X column in external exported csv.

## [2.4.1] - 2024-09-04
Expand Down
2 changes: 1 addition & 1 deletion src/Service/PlanningService.php
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ private function getAssigneeData(mixed $issue): array

$worker = $this->workerRepository->findOneBy(['email' => $assigneeKey]);

if ($worker !== null && $worker->getName() !== null) {
if (null !== $worker && null !== $worker->getName()) {
$assigneeName = $worker->getName();
}

Expand Down

0 comments on commit 856d5db

Please sign in to comment.