getDestination() public method

Get destination option value
public getDestination ( ) : string
return string
Exemplo n.º 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;
 }