getDestination() публичный Метод

Get destination option value
public getDestination ( ) : string
Результат string
Пример #1
0
 /**
  * Gets the optionDestination value
  * @return string
  */
 public function getOptionDestination()
 {
     $destination = $this->options->getDestination();
     if (!empty($destination)) {
         $destination = realpath($this->options->getDestination()) . DIRECTORY_SEPARATOR;
     }
     return $destination;
 }