Пример #1
0
 public function save(array $options = [])
 {
     if (empty($this->public_key) || empty($this->private_key)) {
         $this->generateKeys();
     }
     return parent::save($options);
 }
Пример #2
0
 /**
  * Save the model to the database.
  *
  * @param  array  $options
  * @return bool
  */
 public function save(array $options = [])
 {
     // If only a date of resolution is set, assume it's successful.
     if ($this->date_resolved && !$this->resolution_id) {
         $this->resolution_id = JobResolution::SUCCEEDED;
     }
     parent::save($options);
 }