소스 검색

fixes

tags/0.1.0
Robin Thoni 9 년 전
부모
커밋
6b9499ad99
2개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 1
    0
      src/Utils/LuDataAccess.php
  2. 1
    0
      src/Utils/LuModel.php

+ 1
- 0
src/Utils/LuDataAccess.php 파일 보기

@@ -91,6 +91,7 @@ abstract class LuDataAccess {
91 91
     public static function addId($data)
92 92
     {
93 93
         $data = static::getModel()->fromDBO($data);
94
+        unset($data->id);
94 95
         $data->save();
95 96
         return $data->id;
96 97
     }

+ 1
- 0
src/Utils/LuModel.php 파일 보기

@@ -9,6 +9,7 @@ use Illuminate\Database\Eloquent\Model;
9 9
  * LuModel
10 10
  *
11 11
  * @method static LuModel where($column, $operator, $value)
12
+ * @method static LuModel orWhere($column, $operator, $value)
12 13
  * @method static LuModel orderBy($column, $order)
13 14
  * @method static LuModel take($count)
14 15
  * @method static LuModel offset($offset)

Loading…
취소
저장