grpc.testing.HookRequest.HookRequestCommand */ class HookRequestCommand { /** * Default value * * Generated from protobuf enum UNSPECIFIED = 0; */ const UNSPECIFIED = 0; /** * Start the HTTP endpoint * * Generated from protobuf enum START = 1; */ const START = 1; /** * Stop * * Generated from protobuf enum STOP = 2; */ const STOP = 2; /** * Return from HTTP GET/POST * * Generated from protobuf enum RETURN = 3; */ const PBRETURN = 3; private static $valueToName = [ self::UNSPECIFIED => 'UNSPECIFIED', self::START => 'START', self::STOP => 'STOP', self::PBRETURN => 'RETURN', ]; public static function name($value) { if (!isset(self::$valueToName[$value])) { throw new UnexpectedValueException(sprintf( 'Enum %s has no name defined for value %s', __CLASS__, $value)); } return self::$valueToName[$value]; } public static function value($name) { $const = __CLASS__ . '::' . strtoupper($name); if (!defined($const)) { $pbconst = __CLASS__. '::PB' . strtoupper($name); if (!defined($pbconst)) { throw new UnexpectedValueException(sprintf( 'Enum %s has no value defined for name %s', __CLASS__, $name)); } return constant($pbconst); } return constant($const); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(HookRequestCommand::class, \Grpc\Testing\HookRequest_HookRequestCommand::class);