Skip to content

Commit

Permalink
[5.2] Fix PHPCS nullable parameter (#44543)
Browse files Browse the repository at this point in the history
  • Loading branch information
richard67 authored Nov 28, 2024
1 parent 715fb4c commit 4407015
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ protected function _getAssetTitle(): string
*
* @since __DEPLOY_VERSION__
*/
protected function _getAssetParentId(Table $table = null, $id = null): int
protected function _getAssetParentId(?Table $table = null, $id = null): int
{
$assetId = null;
$asset = new Asset($this->getDbo(), $this->getDispatcher());
Expand Down

0 comments on commit 4407015

Please sign in to comment.