service-captcha/app/Contracts
Leonid Nikitin c3e4c68a41
Add CryptographyContract and its implementation
Added a new CryptographyContract interface and CryptographyString class that implements this contract. The CryptographyContract encapsulates the encryption and decryption of strings, enforcing these operations to be standardized across the application. The CryptographyString class uses Laravel's native crypt facades to perform these actions. In the AppServiceProvider, CryptographyContract is now bound to CryptographyString class, allowing the container to automatically resolve the dependencies wherever the interface is type hinted.
2023-09-19 14:29:01 +06:00
..
CryptographyContract.php Add CryptographyContract and its implementation 2023-09-19 14:29:01 +06:00
FormRequestDto.php Made authorization. 2023-07-06 10:48:32 +06:00
GenerateTokenCommand.php Add captcha tokens management. 2023-08-22 00:15:35 +06:00
Search.php Added the ability to manage a group of users. 2023-07-16 19:21:09 +06:00
ServiceResult.php A new method 'isError' has been introduced to the ServiceResult interface and its implementation. This change was made to improve readability and logic. Now instead of checking if the result is not successful, we can directly check if it's an error using isError method. This improves the code clarity. 2023-07-06 22:31:39 +06:00
ServiceResultError.php Added the ability to manage a group of users. 2023-07-16 19:21:09 +06:00