fork download
  1. $this->dataBase->transactional(function($file) use ($this) {
  2. $result = $this->insertFileIntoDb($file) and $this->storeUploadedFile($file);
  3. return $result;
  4. });
Success #stdin #stdout 0.01s 20520KB
stdin
Standard input is empty
stdout
$this->dataBase->transactional(function($file) use ($this) {
    $result = $this->insertFileIntoDb($file) and $this->storeUploadedFile($file);
    return $result;
});