Skip to content

Commit 92a29e5

Browse files
authored
Merge pull request #310 from oliverklee/task/types/import
Add type annotations for `Import`
2 parents 635c16e + b42e966 commit 92a29e5

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/Property/Import.php

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,11 +52,19 @@ public function getLineNo()
5252
return $this->iLineNo;
5353
}
5454

55+
/**
56+
* @param URL $oLocation
57+
*
58+
* @return void
59+
*/
5560
public function setLocation($oLocation)
5661
{
5762
$this->oLocation = $oLocation;
5863
}
5964

65+
/**
66+
* @return URL
67+
*/
6068
public function getLocation()
6169
{
6270
return $this->oLocation;

0 commit comments

Comments
 (0)