예제 #1
0
 /**
  * @throws \Exception
  * @return CommandResponse
  */
 public function execute()
 {
     foreach ($this->_playlist->pins as $pin) {
         $pin->delete();
     }
     $this->_playlist->delete();
     return CommandResponse::succeed();
 }