コード例 #1
0
ファイル: User.php プロジェクト: redcatphp/baobab
 function __construct(Sessions $sessions, Route $route)
 {
     $branchLevelId = $route->branchLevelId();
     if ($branchLevelId) {
         $this->session = $sessions[$branchLevelId];
     } else {
         $this->session = $sessions[0];
     }
 }