From b42e966b345ed9f50f996b22b1b82f69db150232 Mon Sep 17 00:00:00 2001 From: Oliver Klee Date: Sat, 3 Jul 2021 12:52:03 +0200 Subject: [PATCH] Add type annotations for `Import` --- src/Property/Import.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/Property/Import.php b/src/Property/Import.php index 24ea9542..a2253016 100644 --- a/src/Property/Import.php +++ b/src/Property/Import.php @@ -52,11 +52,19 @@ public function getLineNo() return $this->iLineNo; } + /** + * @param URL $oLocation + * + * @return void + */ public function setLocation($oLocation) { $this->oLocation = $oLocation; } + /** + * @return URL + */ public function getLocation() { return $this->oLocation;