Skip to content
This repository has been archived by the owner on Feb 17, 2020. It is now read-only.

Commit

Permalink
- Fix invalid return type
Browse files Browse the repository at this point in the history
  • Loading branch information
akadlec committed Nov 8, 2017
1 parent f289b4e commit 9edc415
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/IPub/MobileDetect/Helpers/CookieSettings.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ final class CookieSettings extends Nette\Object
private $name;

/**
* @var string
* @var string|NULL
*/
private $domain;

Expand Down Expand Up @@ -109,9 +109,9 @@ public function getName() : string
/**
* Gets the domain that the cookie is available to
*
* @return string
* @return string|NULL
*/
public function getDomain() : string
public function getDomain()
{
return $this->domain;
}
Expand Down

0 comments on commit 9edc415

Please sign in to comment.