Skip to content

Commit

Permalink
Fix implicit nullables
Browse files Browse the repository at this point in the history
  • Loading branch information
trasher committed Dec 28, 2024
1 parent 33235be commit 8473f17
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/GaletteFullcard/PdfFullcard.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,11 @@ class PdfFullcard extends PdfAdhesionForm
/**
* Main constructor
*
* @param ?Adherent $adh Adherent
* @param Adherent $adh Adherent
* @param Db $zdb Database instance
* @param Preferences $prefs Preferences instance
*/
public function __construct(Adherent $adh = null, Db $zdb, Preferences $prefs)
public function __construct(Adherent $adh, Db $zdb, Preferences $prefs)
{
$this->adh = $adh;
$this->prefs = $prefs;
Expand Down

0 comments on commit 8473f17

Please sign in to comment.