diff --git a/src/ActiveRecord.php b/src/ActiveRecord.php index e08fed7..998928c 100644 --- a/src/ActiveRecord.php +++ b/src/ActiveRecord.php @@ -185,6 +185,11 @@ public static function query(): ActiveQuery return new ActiveQuery(static::class); } + /** + * Get the repository for the entity. + * + * @return RepositoryInterface + */ public static function getRepository(): RepositoryInterface { return self::getOrm()->getRepository(static::class);