diff --git a/src/Value/URL.php b/src/Value/URL.php index 62eb9c87..bf43f0e8 100644 --- a/src/Value/URL.php +++ b/src/Value/URL.php @@ -18,15 +18,15 @@ class URL extends PrimitiveValue /** * @var CSSString */ - private $oURL; + private $url; /** * @param int<0, max> $lineNumber */ - public function __construct(CSSString $oURL, $lineNumber = 0) + public function __construct(CSSString $url, $lineNumber = 0) { parent::__construct($lineNumber); - $this->oURL = $oURL; + $this->url = $url; } /** @@ -63,9 +63,9 @@ public static function parse(ParserState $parserState): URL return $result; } - public function setURL(CSSString $oURL): void + public function setURL(CSSString $url): void { - $this->oURL = $oURL; + $this->url = $url; } /** @@ -73,7 +73,7 @@ public function setURL(CSSString $oURL): void */ public function getURL() { - return $this->oURL; + return $this->url; } /** @@ -86,6 +86,6 @@ public function __toString(): string public function render(OutputFormat $outputFormat): string { - return "url({$this->oURL->render($outputFormat)})"; + return "url({$this->url->render($outputFormat)})"; } }