-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathMode.php
54 lines (45 loc) · 876 Bytes
/
Mode.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 Mode implements AttributeInterface
{
use DumpTrait;
/**
* @var string
*/
protected $shortName;
/**
* @var string
*/
protected $fullName;
/**
* @param string $shortName
* @param string $fullName
*/
public function __construct(string $shortName, string $fullName)
{
$this->shortName = $shortName;
$this->fullName = $fullName;
}
/**
* @return string
*/
public function getFullName(): string
{
return $this->fullName;
}
/**
* @return string
*/
public function getShortName(): string
{
return $this->shortName;
}
/**
* @return string
*/
public function __toString(): string
{
return $this->shortName;
}
}