DescriptionWhat needs to be done?Add the following PHP docblock to each of these classes:/** * @deprecated Class was moved to the EntityGenerator package as it is used there. */The classes to update are:RonasIT\Support\Exceptions\ClassNotExistsExceptionRonasIT\Support\Exceptions\CircularRelationsFoundedExceptionRonasIT\Support\Exceptions\EntityCreateExceptionEnsure the added docblock is placed just before the class declaration.Verify that adding this annotation does not break any existing functionality or imports.Expected OutcomeWhat is the expected result?Each class is clearly marked as deprecated with the specified message.Developers are informed these classes have moved to the EntityGenerator package.No current functionality is broken by this change.Verification ScenariosHow can this be tested?Open each class file and confirm the presence of the exact @deprecated docblock with the provided message.Build or run the application to ensure no errors or regressions occur.If possible, trigger IDE or static analysis warnings about deprecated usage of these classes.Confirm usage references mention the deprecation message.
Description
What needs to be done?
*/
The classes to update are:
RonasIT\Support\Exceptions\ClassNotExistsExceptionRonasIT\Support\Exceptions\CircularRelationsFoundedExceptionRonasIT\Support\Exceptions\EntityCreateExceptionExpected Outcome
What is the expected result?
Verification Scenarios
How can this be tested?
@deprecateddocblock with the provided message.