Example #1
0
 public function getWorkingWeek()
 {
     $ww = $this->_workingWeek;
     if (!$ww) {
         $ww = new WorkingWeek();
         $ww->user_id = $this->id;
         $ww->save();
     }
     return $ww;
 }