diff --git a/index.php b/index.php index 25a26dc..7e266d9 100644 --- a/index.php +++ b/index.php @@ -15,7 +15,7 @@ class BaseModel { } public static function Get(int $id) { - return __CLASS__; + return self::class; $stmt = $pdo->prepare('SELECT id, name FROM users WHERE id=?'); $stmt->execute([$id]); return $stmt->fetchObject(__CLASS__);