1
0
mirror of https://github.com/flarum/core.git synced 2025-10-15 08:55:53 +02:00

Backend cleanup (#2859)

* Extender docblocks cleanup
* Excplicit type hinting in extenders
* Bring method under constructor
* Mark some classes and methods as internal
* Remove beta references

Co-authored-by: Clark Winkelmann <clark.winkelmann@gmail.com>
This commit is contained in:
Sami Mazouz
2021-05-13 15:26:24 +01:00
committed by GitHub
parent e3f506817b
commit 7bceda976b
59 changed files with 655 additions and 174 deletions

View File

@@ -44,10 +44,19 @@ abstract class AbstractModel extends Eloquent
*/
protected $afterDeleteCallbacks = [];
/**
* @internal
*/
public static $customRelations = [];
/**
* @internal
*/
public static $dateAttributes = [];
/**
* @internal
*/
public static $defaults = [];
/**