コード例 #1
0
ファイル: Sequence.php プロジェクト: sbuberl/fSQL
 public function __construct($name, SequencesFile $file)
 {
     parent::__construct($file->lockFile);
     $this->name = $name;
     $this->file = $file;
 }
コード例 #2
0
ファイル: Identity.php プロジェクト: sbuberl/fSQL
 public function __construct(Table $table, $columnName)
 {
     parent::__construct($table->columnsLockFile);
     $this->table = $table;
     $this->columnName = $columnName;
 }