mirror of
https://github.com/torrentpier/torrentpier-lts.git
synced 2025-03-01 15:21:02 +03:00
114 lines
2.4 KiB
PHP
114 lines
2.4 KiB
PHP
<?php
|
|
/**
|
|
* Zend Framework (http://framework.zend.com/)
|
|
*
|
|
* @link http://github.com/zendframework/zf2 for the canonical source repository
|
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
|
*/
|
|
|
|
namespace Zend\Http\Header\Accept\FieldValuePart;
|
|
|
|
/**
|
|
* Field Value Part
|
|
*
|
|
*
|
|
* @see http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.1
|
|
*/
|
|
abstract class AbstractFieldValuePart
|
|
{
|
|
/**
|
|
* Internal object used for value retrieval
|
|
* @var object
|
|
*/
|
|
private $internalValues;
|
|
|
|
/**
|
|
* A Field Value Part this Field Value Part matched against.
|
|
* @var AbstractFieldValuePart
|
|
*/
|
|
protected $matchedAgainst;
|
|
|
|
/**
|
|
*
|
|
* @param object $internalValues
|
|
*/
|
|
public function __construct($internalValues)
|
|
{
|
|
$this->internalValues = $internalValues;
|
|
}
|
|
|
|
/**
|
|
* Set a Field Value Part this Field Value Part matched against.
|
|
*
|
|
* @param AbstractFieldValuePart $matchedAgainst
|
|
* @return AbstractFieldValuePart provides fluent interface
|
|
*/
|
|
public function setMatchedAgainst(AbstractFieldValuePart $matchedAgainst)
|
|
{
|
|
$this->matchedAgainst = $matchedAgainst;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get a Field Value Part this Field Value Part matched against.
|
|
*
|
|
* @return AbstractFieldValuePart|null
|
|
*/
|
|
public function getMatchedAgainst()
|
|
{
|
|
return $this->matchedAgainst;
|
|
}
|
|
|
|
/**
|
|
*
|
|
* @return object
|
|
*/
|
|
protected function getInternalValues()
|
|
{
|
|
return $this->internalValues;
|
|
}
|
|
|
|
/**
|
|
* @return string $typeString
|
|
*/
|
|
public function getTypeString()
|
|
{
|
|
return $this->getInternalValues()->typeString;
|
|
}
|
|
|
|
/**
|
|
* @return float $priority
|
|
*/
|
|
public function getPriority()
|
|
{
|
|
return (float) $this->getInternalValues()->priority;
|
|
}
|
|
|
|
/**
|
|
* @return \stdClass $params
|
|
*/
|
|
public function getParams()
|
|
{
|
|
return (object) $this->getInternalValues()->params;
|
|
}
|
|
|
|
/**
|
|
* @return string $raw
|
|
*/
|
|
public function getRaw()
|
|
{
|
|
return $this->getInternalValues()->raw;
|
|
}
|
|
|
|
/**
|
|
*
|
|
* @param mixed
|
|
* @return mixed
|
|
*/
|
|
public function __get($key)
|
|
{
|
|
return $this->getInternalValues()->$key;
|
|
}
|
|
}
|