Skip to content

Commit

Permalink
Update docblock
Browse files Browse the repository at this point in the history
  • Loading branch information
mishavantol committed Aug 21, 2019
1 parent 6eef9cf commit 5abcea0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Entity/Address.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ protected function __construct(array $addressData)
/**
* @param array|null $addressData
*
* @return Address
* @return static
*/
public static function fromAddressData(array $addressData = null)
{
Expand Down
2 changes: 1 addition & 1 deletion src/Entity/Email.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ protected function __construct(array $emailAddressData)
/**
* @param array|null $emailAddressData
*
* @return Email
* @return static
*/
public static function fromEmailAddressData(array $emailAddressData = null)
{
Expand Down
2 changes: 1 addition & 1 deletion src/Entity/PhoneNumber.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ protected function __construct(array $phoneNumberData)
/**
* @param array $phoneNumberData
*
* @return self
* @return static
*/
public static function fromPhoneNumberData(array $phoneNumberData = null)
{
Expand Down

0 comments on commit 5abcea0

Please sign in to comment.