for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Mhor\MediaInfo\Attribute;
use Mhor\MediaInfo\DumpTrait;
class Rate implements AttributeInterface
{
use DumpTrait;
/**
* @var int
*/
private $absoluteValue;
* @var string
private $textValue;
* @param $absoluteValue
* @param $textValue
public function __construct($absoluteValue, $textValue)
$this->absoluteValue = $absoluteValue;
$this->textValue = $textValue;
}
* @return int
public function getAbsoluteValue()
return $this->absoluteValue;
* @return string
public function getTextValue()
return $this->textValue;
public function __toString()