forked from mhor/php-mediainfo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Ratio.php
54 lines (45 loc) · 918 Bytes
/
Ratio.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?php
namespace Mhor\MediaInfo\Attribute;
use Mhor\MediaInfo\DumpTrait;
class Ratio implements AttributeInterface
{
use DumpTrait;
/**
* @var float
*/
private $absoluteValue;
/**
* @var string
*/
private $textValue;
/**
* @param string|float $absoluteValue
* @param string $textValue
*/
public function __construct($absoluteValue, string $textValue)
{
$this->absoluteValue = (float) $absoluteValue;
$this->textValue = $textValue;
}
/**
* @return float
*/
public function getAbsoluteValue(): float
{
return $this->absoluteValue;
}
/**
* @return string
*/
public function getTextValue(): string
{
return $this->textValue;
}
/**
* @return string
*/
public function __toString(): string
{
return $this->textValue;
}
}