Skip to content

Commit

Permalink
fix code style
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelfolaron committed Nov 12, 2024
1 parent 1eb6ac1 commit 73c6540
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion app/Domain/CsvImport/Templates/upload.tpl.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
$$var = $val; // necessary for blade refactor
}
$maxSize = Fileupload::getMaximumFileUploadSize();
$moduleId = (int)$_GET['id'] ?? '';
$moduleId = (int) $_GET['id'] ?? '';
?>

<div id="fileManager">
Expand Down
14 changes: 7 additions & 7 deletions app/Domain/Timesheets/Templates/showMy.tpl.php
Original file line number Diff line number Diff line change
Expand Up @@ -273,13 +273,13 @@
<tbody>
<?php
$colSum = [
'day1' => 0,
'day2' => 0,
'day3' => 0,
'day4' => 0,
'day5' => 0,
'day6' => 0,
'day7' => 0,
'day1' => 0,
'day2' => 0,
'day3' => 0,
'day4' => 0,
'day5' => 0,
'day6' => 0,
'day7' => 0,
];
// @todo: move all this calculations into the service the timesheets class.
foreach ($tpl->get('allTimesheets') as $timeRow) {
Expand Down

0 comments on commit 73c6540

Please sign in to comment.