Changeset 61
- Timestamp:
- 05/04/06 12:19:35 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.2/classes/phing/tasks/ext/phpdoc/PHPDocumentorTask.php
r59 r61 111 111 $arguments = $this->constructArguments(); 112 112 113 exec(self::PHPDOC . " " . $arguments, $output, $retval); 113 $this->log("Running phpDocumentor..."); 114 115 exec(self::PHPDOC . " " . $arguments, $output, $return); 116 117 if ($return != 0) 118 { 119 throw new BuildException("Could not execute ionCube Encoder: " . implode(' ', $output)); 120 } 114 121 } 115 122 … … 119 126 private function constructArguments() 120 127 { 121 $arguments = "-q ";128 $arguments = "-q on "; 122 129 123 130 if ($this->title)
Note: See TracChangeset
for help on using the changeset viewer.
