Skip to content

Commit bd4091c

Browse files
committed
refactor: order methods by constructor args
1 parent 0c83ec8 commit bd4091c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/UrlBuilder.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -56,14 +56,14 @@ private function validateDomain($domain)
5656
}
5757
}
5858

59-
public function setSignKey($key)
59+
public function setUseHttps($useHttps)
6060
{
61-
$this->signKey = $key;
61+
$this->useHttps = $useHttps;
6262
}
6363

64-
public function setUseHttps($useHttps)
64+
public function setSignKey($key)
6565
{
66-
$this->useHttps = $useHttps;
66+
$this->signKey = $key;
6767
}
6868

6969
public function setIncludeLibraryParam($includeLibraryParam)

0 commit comments

Comments
 (0)