Skip to content

Commit

Permalink
Update PHPDoc
Browse files Browse the repository at this point in the history
  • Loading branch information
webeweb committed Jul 16, 2021
1 parent 3bfe89c commit cdfb5ea
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/Model/Attribute/StringDeviseCapitalTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,33 +12,33 @@
namespace WBW\Library\Pappers\Model\Attribute;

/**
* String devise captial trait.
* String devise capital trait.
*
* @author webeweb <https://github.com/webeweb/>
* @package WBW\Library\Pappers\Model\Attribute
*/
trait StringDeviseCapitalTrait {

/**
* Devise captial.
* Devise capital.
*
* @var string|null
*/
private $deviseCapital;

/**
* Get the devise captial.
* Get the devise capital.
*
* @return string|null Returns the devise captial.
* @return string|null Returns the devise capital.
*/
public function getDeviseCapital(): ?string {
return $this->deviseCapital;
}

/**
* Set the devise captial.
* Set the devise capital.
*
* @param string|null $deviseCapital The devise captial.
* @param string|null $deviseCapital The devise capital.
* @return self Returns this instance.
*/
public function setDeviseCapital(?string $deviseCapital): self {
Expand Down

0 comments on commit cdfb5ea

Please sign in to comment.