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
<?php namespace KBC\Accounts; | |
use KBC\Accounts\Events\AccountWasDeleted; | |
use KBC\Accounts\Events\AccountWasOpened; | |
use KBC\Accounts\Events\MoneyWasWithdrawn; | |
use KBC\Accounts\Events\MoneyWasDeposited; | |
use KBC\Core\BaseModel; | |
final class Account extends BaseModel | |
{ |
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
<?php | |
/** | |
* simple method to encrypt or decrypt a plain text string | |
* initialization vector(IV) has to be the same when encrypting and decrypting | |
* | |
* @param string $action: can be 'encrypt' or 'decrypt' | |
* @param string $string: string to encrypt or decrypt | |
* | |
* @return string | |
*/ |