Skip to content

Commit

Permalink
Remove EventType::default
Browse files Browse the repository at this point in the history
  • Loading branch information
cleptric committed Oct 31, 2023
1 parent 9ed638f commit ba8b75d
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions src/EventType.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,22 +27,11 @@ private function __construct(string $value)
$this->value = $value;
}

/**
* Creates an instance of this enum for the "default" value.
*/
public static function default(): self
{
return self::getInstance('default');
}

public static function event(): self
{
return self::getInstance('event');
}

/**
* Creates an instance of this enum for the "transaction" value.
*/
public static function transaction(): self
{
return self::getInstance('transaction');
Expand Down

0 comments on commit ba8b75d

Please sign in to comment.