Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/app/Library/CrudPanel/Traits/Read.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ trait Read
/**
* Find and retrieve the id of the current entry.
*
* @return int|bool The id in the db or false.
* @return int|null The id in the db or null.
*/
public function getCurrentEntryId()
{
Expand All @@ -29,7 +29,7 @@ public function getCurrentEntryId()
// otherwise use the next to last parameter
array_values($params)[count($params) - 1] ??
// otherwise return false
false;
null;
}

/**
Expand Down