for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Fousky\Component\iDoklad\LOV;
/**
* @author Lukáš Brzák <[email protected]>
*/
abstract class iDokladAbstractEnum implements iDokladEnumInterface
{
/** @var int $value */
protected $value;
* @return int
public function createJson(): int
return $this->value;
}
* @return string
public function __toString(): string
return (string) $this->value;
* @param int $value
public function __construct(int $value)
$this->value = $value;
public function getValue(): int