Auth.php 183 B

123456789101112
  1. <?php
  2. namespace App;
  3. class Auth
  4. {
  5. public static $user = null;
  6. public static $userId = null;
  7. public static $admin = null;
  8. public static $adminId = null;
  9. }