CopperMaterial: fixed missing @return $this docs

This commit is contained in:
Dylan K. Taylor 2025-03-14 15:40:05 +00:00
parent 73a4b076d6
commit 341c7a03a9
No known key found for this signature in database
GPG Key ID: 8927471A91CAFD3D

View File

@ -30,9 +30,15 @@ interface CopperMaterial{
public function getOxidation() : CopperOxidation;
/**
* @return $this
*/
public function setOxidation(CopperOxidation $oxidation) : CopperMaterial;
public function isWaxed() : bool;
/**
* @return $this
*/
public function setWaxed(bool $waxed) : CopperMaterial;
}