codekandis / constants-classes-translator
`codekandis/constants-classes-translator` is a library to translate values from constants classes into values of another constants classes.
2.0.0
2025-02-18 14:02 UTC
Requires
- php: >=8.3
- codekandis/types: ^1.0.0
- codekandis/validators: ^1.0.0
Requires (Dev)
- codekandis/phpunit: ^5.0.0
- rector/rector: ^1.2.2
- roave/security-advisories: dev-master
This package is auto-updated.
Last update: 2025-03-18 14:14:58 UTC
README
codekandis/constants-classes-translator
is a library to translate values from constants classes into values of another constants classes.
Index
Installation
Install the latest version with
$ composer require codekandis/constants-classes-translator
Testing
Test the code with
$ composer test
How to use
Define some error codes and error messages
abstract class ErrorCodes { public const int ERROR_ONE = 1; public const int ERROR_TWO = 2; public const int ERROR_THREE = 3; } abstract class ErrorMessages { public const string ERROR_ONE = 'Error one occurred.'; public const string ERROR_TWO = 'Error two occurred.'; public const string ERROR_THREE = 'Error three occurred.'; }
Instantiate the ConstantsClassesTranslator
( new ConstantsClassesTranslator( ErrorCodes::class, ErrorMessages::class ) ) ->translate( ErrorCodes::ERROR_TWO ); /** * Error two occured. */
or vice versa
( new ConstantsClassesTranslator( ErrorMessages::class, ErrorCodes::class ) ) ->translate( ErrorMessages::ERROR_TWO ); /** * 2 */
Exceptions
The ConstantsClassesTranslator
throws several exceptions which inherits from ConstantsClassesTranslatorException
.
ConstantsClassNotFoundException
the passed constants class name does not existCorrespondingConstantsClassValueNotFoundException
the constants class value has no corresponding constants class valueConstantsClassValueNotFoundException
the constants class value does not exist