Skip to content

Commit

Permalink
Merge pull request #423 from creative-commoners/pulls/5/php84
Browse files Browse the repository at this point in the history
API Explicity mark nullable parameters for PHP 8.4
  • Loading branch information
GuySartorelli authored Dec 2, 2024
2 parents 12d355b + 3a64eb9 commit bef9c2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/GridFieldConfigurablePaginator.php
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,7 @@ public function getActions($gridField)
* @param GridField $gridField Not used, but present for parent method compatibility
* @return GridState_Data
*/
protected function getGridPagerState(GridField $gridField = null)
protected function getGridPagerState(?GridField $gridField = null)
{
if (!$this->gridFieldState) {
$state = $this->getGridField()->State->GridFieldConfigurablePaginator;
Expand Down

0 comments on commit bef9c2e

Please sign in to comment.