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 Mode implements AttributeInterface
{
use DumpTrait;
/**
* @var string
*/
private $shortName;
private $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;
public function getShortName(): string
return $this->shortName;
public function __toString(): string