Esempio n. 1
0
 /**
  * Execute the job.
  *
  * @return bool
  */
 public function handle()
 {
     if ($this->step instanceof GuideStep) {
         $position = (int) $this->request->input('position', 1);
         return $this->step->insertAt($position);
     }
     return false;
 }