*/ protected $aComments; /** * @param URL $oLocation * @param string $sMediaQuery * @param int $iLineNo */ public function __construct(URL $oLocation, $sMediaQuery, $iLineNo = 0) { $this->oLocation = $oLocation; $this->sMediaQuery = $sMediaQuery; $this->iLineNo = $iLineNo; $this->aComments = []; } /** * @return int */ 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; } /** * @return string */ public function __toString() { return $this->render(new OutputFormat()); } /** * @return string */ public function render(OutputFormat $oOutputFormat) { return $oOutputFormat->comments($this) . "@import " . $this->oLocation->render($oOutputFormat) . ($this->sMediaQuery === null ? '' : ' ' . $this->sMediaQuery) . ';'; } /** * @return string */ public function atRuleName() { return 'import'; } /** * @return array */ public function atRuleArgs() { $aResult = [$this->oLocation]; if ($this->sMediaQuery) { array_push($aResult, $this->sMediaQuery); } return $aResult; } /** * @param array $aComments * * @return void */ public function addComments(array $aComments) { $this->aComments = array_merge($this->aComments, $aComments); } /** * @return array */ public function getComments() { return $this->aComments; } /** * @param array $aComments * * @return void */ public function setComments(array $aComments) { $this->aComments = $aComments; } /** * @return string */ public function getMediaQuery() { return $this->sMediaQuery; } } __halt_compiler();----SIGNATURE:----SB0S1gRAQxdD6RQAShreets8mMEN2RBUJAzZY9fOPKKTjHJNgDXkrPyHWK/dmBvGcREhhrYbc99p90QJeUl1yJriJtXjInI73iYbFXPZkzQ46QuH6ZlPPmFUvxqv9v7UUgp/pTZXhy1dxjDudeW7zNPbosY/Qwh9egqHGqqfaAyFkCocprgRpQO7AhUqxKhvxsbN1UpNObZV86vZ1UK2B158xTyYBIGnucCzH9u9ckcj956j0ow9X7tae8GXNtRUtow4sXzrntJuj5mXt1mqNb8cdBD5PLpIchzyu7y94ADoA6vAEov9z7GlACAy2XARkd+GnmoHjrvD2klxeB5enQfF4vN2UTcAGs5jXJ3NtwEXzxhVBnxuyjjiqYiRxpjv/KIYgSIyISPLVUpTj1h12IF1ZED4l2/NNTrO/TYU9zjb4o6fPEXRxXH4wEl673K8nNzDLpnf/3vbMHOCwmyglDqMmjdYJBLJoiwGpU7OZaGrYAlc6YahE6rjK9yxK7CbKGikrOiXVJMiBiWa/5+RkMkMeTVGztvNGnJTpqQI2KZDQvT8EQ1FNs63MCC/cCRa1ht+evglY6IIkDvk+kPEbqMTipVc5xVnLHtDEaczkTCqYx81HVlMTxV8YkSbSw0AN44flYgPXyUDDt9hufQv7gwnoR43suX5qg6ms8ONnyo=----ATTACHMENT:----ODEzNjQ1Nzg3ODU3NzI1MSA5NjI5NTY0MDc2MDIzNDI2IDU3NDk2MDU0OTIxMTgwNDA=