コード例 #1
0
ファイル: TestManager.php プロジェクト: gsokolowski/learnzf2
 public function store($data)
 {
     $model = new Test();
     $data['definition'] = $this->services->get('cipher')->encrypt($data['definition']);
     return $model->insert($data);
 }