| 1 | <?php |
||
| 9 | trait PrimaryTrait |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * Primary key value (from previous command), promised on execution!. |
||
| 13 | * |
||
| 14 | * @var mixed |
||
| 15 | */ |
||
| 16 | private $primaryKey; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * Promised on execute. |
||
| 20 | * |
||
| 21 | * @return mixed|null |
||
| 22 | */ |
||
| 23 | public function primaryKey() |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @param mixed $primaryKey |
||
| 30 | */ |
||
| 31 | public function setPrimaryKey($primaryKey) |
||
| 35 | } |