Skip to content

Commit

Permalink
lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
NirmalNegi07 committed Feb 27, 2024
1 parent f6da510 commit b8c20e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Modules/EffortTracking/Services/EffortTrackingService.php
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ public function getEffortForProject($project)
try {
$effortData['sheet_project'] = $sheetProject;
$this->updateEffort($effortData);
$approvedPipelineSheetEffort = !empty($approvedPipelineSheet[0][0]) ? $approvedPipelineSheet[0][0] : 0;
$approvedPipelineSheetEffort = ! empty($approvedPipelineSheet[0][0]) ? $approvedPipelineSheet[0][0] : 0;
$this->updateApprovedPipelineEffort($approvedPipelineSheetEffort, $effortData);
ProjectMeta::updateOrCreate(
[
Expand Down

0 comments on commit b8c20e3

Please sign in to comment.