-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #125 from demvsystems/add-ambulante-krankenzusatzv…
…ersicherung Add ambulante krankenzusatzversicherung
- Loading branch information
Showing
4 changed files
with
40 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
28 changes: 28 additions & 0 deletions
28
src/Werte/Bedarf/Thema/Themen/AmbulanteKrankenzusatzversicherung.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<?php | ||
|
||
namespace Demv\Werte\Bedarf\Thema\Themen; | ||
|
||
use Demv\Werte\Bedarf\Thema\Bedarfsthema; | ||
use Demv\Werte\Sparte\Sparten\PrivateKrankenzusatzversicherung; | ||
|
||
/** | ||
* Class AmbulanteKrankenzusatzversicherung | ||
* @package Demv\Werte\Bedarf\Thema\Themen | ||
*/ | ||
final class AmbulanteKrankenzusatzversicherung extends Bedarfsthema | ||
{ | ||
const ID = 15; | ||
|
||
/** | ||
* AmbulanteKrankenzusatzversicherung constructor. | ||
*/ | ||
public function __construct() | ||
{ | ||
parent::__construct( | ||
self::ID, | ||
'Ambulante Krankenzusatzversicherung', | ||
[PrivateKrankenzusatzversicherung::AMBULANT], | ||
'Ambulante Kranken­zusatz­versicherung' | ||
); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters