Skip to content

Commit

Permalink
add return type
Browse files Browse the repository at this point in the history
  • Loading branch information
DjordyKoert committed Jan 9, 2024
1 parent 743712f commit bd221dc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion PropertyDescriber/PropertyDescriberAwareInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@

interface PropertyDescriberAwareInterface
{
public function setPropertyDescriber(PropertyDescriberInterface $propertyDescriber);
public function setPropertyDescriber(PropertyDescriberInterface $propertyDescriber): void;
}
2 changes: 1 addition & 1 deletion PropertyDescriber/PropertyDescriberAwareTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ trait PropertyDescriberAwareTrait
*/
protected $propertyDescriber;

public function setPropertyDescriber(PropertyDescriberInterface $propertyDescriber)
public function setPropertyDescriber(PropertyDescriberInterface $propertyDescriber): void
{
$this->propertyDescriber = $propertyDescriber;
}
Expand Down

0 comments on commit bd221dc

Please sign in to comment.