Skip to content

Commit 3f541eb

Browse files
committed
fix phpdoc
1 parent 02bef77 commit 3f541eb

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

Protocols/EPP/eppData/eppDomain.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -361,7 +361,7 @@ public function getPassword() {
361361

362362
/**
363363
*
364-
* @param string $status | eppStatus $status
364+
* @param string|eppStatus $status
365365
*/
366366
public function addStatus($status) {
367367
$this->statuses[] = $status;

Protocols/EPP/eppData/eppStatus.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,27 +31,27 @@ class eppStatus {
3131

3232
/**
3333
* Holds the status name
34-
* @var <string>
34+
* @var string
3535
*/
3636
private $statusname;
3737

3838
/**
3939
* Holds the language from the status
40-
* @var <string>
40+
* @var string
4141
*/
4242
private $language;
4343

4444
/**
4545
* Holds the status message
46-
* @var <string>
46+
* @var string
4747
*/
4848
private $message;
4949

5050
/**
5151
*
52-
* @param <string> $statusname
53-
* @param <string> $language
54-
* @param <string> $message
52+
* @param string $statusname
53+
* @param ?string $language
54+
* @param ?string $message
5555
*/
5656
public function __construct($statusname, $language = null, $message = null) {
5757
$this->setStatusname($statusname);

Protocols/EPP/eppRequests/eppUpdateDomainRequest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ protected function addDomainChanges($element, eppDomain $domain) {
114114
/**
115115
*
116116
* @param \domElement $element
117-
* @param string $status | eppStatus $status
117+
* @param string|eppStatus $status
118118
*/
119119
protected function addDomainStatus($element, $status) {
120120
$stat = $this->createElement('domain:status');

0 commit comments

Comments
 (0)