We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 983000d commit 9fc5860Copy full SHA for 9fc5860
src/orange/cfhelper/application/ApplicationInfo.php
@@ -14,7 +14,7 @@ class ApplicationInfo
14
{
15
public $version;
16
public $name;
17
- public $uri;
+ public $uris;
18
public $host;
19
public $port;
20
@@ -75,17 +75,17 @@ public function setPort($port)
75
/**
76
* @return mixed
77
*/
78
- public function getUri()
+ public function getUris()
79
80
- return $this->uri;
+ return $this->uris;
81
}
82
83
84
* @param mixed $uri
85
86
- public function setUri($uri)
+ public function setUris($uris)
87
88
- $this->uri = $uri;
+ $this->uris = $uris;
89
90
91
0 commit comments