Replace DbProtection class by an Encryption service

This commit is contained in:
Bubka
2021-10-11 23:11:52 +02:00
parent 568d1b131a
commit c7b43de835
10 changed files with 181 additions and 148 deletions

View File

@ -0,0 +1,14 @@
<?php
namespace App\Exceptions;
use Exception;
/**
* Class DbEncryptionException.
*
* @codeCoverageIgnore
*/
class DbEncryptionException extends Exception
{
}