예제 #1
0
 /**
  * @return void
  */
 public function __construct(UserManager $manager)
 {
     $this->userManager = $manager;
     $this->auth = $manager->auth;
     $this->registrar = $manager->registrar;
     $this->user = $manager->user;
     if ($this->option('boardListShow')) {
         View::share('boardbar', Board::getBoardListBar());
     }
     View::share('user', $this->user);
     $this->boot();
 }