Skip to content

Commit

Permalink
Coding standards
Browse files Browse the repository at this point in the history
  • Loading branch information
jeppekroghitk committed Jan 9, 2025
1 parent 6b8fe74 commit fea8bf3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions Helpers/TimeTableActionHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,8 @@ public function saveTicket(array $postData, string $redirectUrl): string
* Deletes a ticket based on the provided POST data and redirects to the specified URL.
* Outputs a JSON-encoded response indicating success or failure status.
*
* @param array<string, mixed> $postData Postdata
* @param string $redirectUrl Redirect url.
* @param array<string, mixed> $postData Postdata
* @param string $redirectUrl Redirect url.
* @return void Json encoded return.
*/
public function deleteTicket(array $postData, string $redirectUrl): void
Expand Down Expand Up @@ -167,8 +167,8 @@ private function appendQueryParams(array $postData, string $redirectUrl): string
/**
* Copies time log entries forward from a specified start date to an end date for a given ticket.
*
* @param array<string, mixed> $postData Postdata
* @param string $redirectUrl Redirect url
* @param array<string, mixed> $postData Postdata
* @param string $redirectUrl Redirect url
* @return string The redirect URL with appended query parameters after processing.
*/
public function copyEntryForward(array $postData, string $redirectUrl): string
Expand Down
2 changes: 1 addition & 1 deletion Templates/timetable.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ class="timetable-edit-entry {{ $weekendClass }} {{ $todayClass }} {{ $newWeekCla
@else
<!-- A little something for when the week has no logs -->
<tr class="empty-row"">
<td class=" empty-row" colspan="{{ count($weekDates) + 2 }}">
<td class=" empty-row" colspan="{{ count($weekDates) + 2 }}">
{{ __("It seems the 'WORK-IT' fairy forgot to sprinkle her magic dust here! 🧚‍🪄✨") }}
</td>
</tr>
Expand Down

0 comments on commit fea8bf3

Please sign in to comment.