Skip to content

Commit 59a103f

Browse files
committed
Bump dependencies
1 parent e5920ee commit 59a103f

3 files changed

Lines changed: 58 additions & 57 deletions

File tree

composer.lock

Lines changed: 56 additions & 55 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Command/BurndownCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int
7777
$lists[$card['idList']]['count'] += 1;
7878

7979
preg_match('/^\((.+?)\)/', $card['name'], $points);
80-
if (!empty($points) && isset($points[1])) {
80+
if (!empty($points)) {
8181
$lists[$card['idList']]['points'] += $points[1];
8282
$pointCount += $points[1];
8383
}

src/Command/ListPeopleCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int
8585

8686
preg_match('/^\((.+?)\)/', $card['name'], $points);
8787

88-
if (!empty($points) && isset($points[1])) {
88+
if (!empty($points)) {
8989
$storyPoints = (float) $members[$cardMemberId]['storyPoints'];
9090
$members[$cardMemberId]['storyPoints'] = $storyPoints + (float) $points[1];
9191
}

0 commit comments

Comments
 (0)