mzur / kirby-form

A form helper for Kirby CMS based websites and apps, using the Post/Redirect/Get pattern.
MIT License
8 stars 6 forks source link

PHP 8.1: Don't pass null #9

Closed lukasleitsch closed 2 years ago

lukasleitsch commented 2 years ago

Passing null throws a deprecation warning in PHP 8.1.

This PR adds the null coalescing operator to avoid passing null and the deprecation warning.

mzur commented 2 years ago

Thanks!