Components_Component::getReleaseNotesPath PHP Method

getReleaseNotesPath() public method

Return the path to the release notes.
public getReleaseNotesPath ( ) : string | boolean
return string | boolean The path to the release notes or false.
    public function getReleaseNotesPath();

Usage Example

Ejemplo n.º 1
0
 /**
  * Set the component this task should act upon.
  *
  * @param Components_Component $component The component to be released.
  *
  * @return NULL
  */
 public function setComponent(Components_Component $component)
 {
     $this->_component = $component;
     if ($file = $component->getReleaseNotesPath()) {
         $this->_notes = (include $file);
     }
 }
All Usage Examples Of Components_Component::getReleaseNotesPath