Skip to content

Commit

Permalink
Update typehinting
Browse files Browse the repository at this point in the history
  • Loading branch information
BelleNottelling committed Jun 13, 2023
1 parent 2025d11 commit e2ba80d
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions src/Mollie.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,18 +17,12 @@ class Payment_Adapter_Mollie extends Payment_AdapterAbstract implements \FOSSBil
protected MollieApiClient $mollie;
protected $di;

/**
* @param \Pimple\Container|null $di
*/
public function setDi($di)
public function setDi(\Pimple\Container|null $di): void
{
$this->di = $di;
}

/**
* @return \Pimple\Container|null
*/
public function getDi()
public function getDi(): ?\Pimple\Container
{
return $this->di;
}
Expand Down

0 comments on commit e2ba80d

Please sign in to comment.