Skip to content

Commit 9fc5860

Browse files
committed
Fix uris bug
1 parent 983000d commit 9fc5860

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/orange/cfhelper/application/ApplicationInfo.php

+5-5
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class ApplicationInfo
1414
{
1515
public $version;
1616
public $name;
17-
public $uri;
17+
public $uris;
1818
public $host;
1919
public $port;
2020

@@ -75,17 +75,17 @@ public function setPort($port)
7575
/**
7676
* @return mixed
7777
*/
78-
public function getUri()
78+
public function getUris()
7979
{
80-
return $this->uri;
80+
return $this->uris;
8181
}
8282

8383
/**
8484
* @param mixed $uri
8585
*/
86-
public function setUri($uri)
86+
public function setUris($uris)
8787
{
88-
$this->uri = $uri;
88+
$this->uris = $uris;
8989
}
9090

9191
/**

0 commit comments

Comments
 (0)