forked from ILIAS-eLearning/ILIAS
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[PROPOSAL] deprecation of active record
- Loading branch information
Showing
1 changed file
with
5 additions
and
6 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,12 +17,11 @@ | |
*********************************************************************/ | ||
|
||
/** | ||
* Class ActiveRecord | ||
* @author Fabian Schmid <[email protected]> | ||
* @author Oskar Truffer <[email protected]> | ||
* @experimental | ||
* @description | ||
* @version 2.0.7 | ||
* @depracated This service is now deprecated and will be removed with ILIAS 12 or 13 (depending on how quickly users | ||
* can replace their implementations). The ActiveRecord was a simple way of handling database operations and object | ||
* mapping in its day. However, the pattern is not very lightweight and has a very large overhead. It also leads to | ||
* many database queries and high memory consumption. For several releases now, the “Repository Pattern” has been | ||
* propagated as a better alternative. | ||
*/ | ||
#[\AllowDynamicProperties] | ||
abstract class ActiveRecord | ||
|