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]>
*/
class EetResponsibilityEnum extends iDokladAbstractEnum
{
const IDOKLAD = 0;
const EXTERNAL_APPLICATION = 1;
* @return bool
public function isIDoklad(): bool
return self::IDOKLAD === $this->value;
}
public function isExternalApplication(): bool
return self::EXTERNAL_APPLICATION === $this->value;