Exemplo n.º 1
0
 /**
  * @expectedException \Enum\EnumException
  */
 public function testGetThrowsExceptionWhenClassDoesntExist()
 {
     Enum::get(ExampleEnum::FOO, 'some_fake_class');
 }
Exemplo n.º 2
0
 /**
  * @param mixed $value
  * @param AbstractPlatform $platform
  * @return mixed
  */
 public function convertToPHPValue($value, AbstractPlatform $platform)
 {
     return Enum::get($value, $this->getEnumClass());
 }