Skip to content

Commit

Permalink
v2.1.535
Browse files Browse the repository at this point in the history
  • Loading branch information
johnturnham committed Nov 26, 2023
1 parent 87bff2f commit c707506
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion lib/Model/BusinessType.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,8 @@ class BusinessType

const CORPORATION = 'Corporation';

const SOLE_PROPRIETORSHIP = 'Sole Proprietorship';

/**
* Gets allowable values of the enum
* @return string[]
Expand All @@ -64,7 +66,8 @@ public static function getAllowableEnumValues()
self::LIMITED_LIABILITY_CORPORATION,
self::CO_OPERATIVE,
self::NON_PROFIT_CORPORATION,
self::CORPORATION
self::CORPORATION,
self::SOLE_PROPRIETORSHIP
];
}
}
Expand Down

0 comments on commit c707506

Please sign in to comment.