Changeset 63

Show
Ignore:
Timestamp:
05/04/06 11:42:35 (2 years ago)
Author:
mrook
Message:

Fix access & some docblocks

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/2.2/classes/phing/tasks/ext/phpunit2/PHPUnit2ReportTask.php

    r62 r63  
    7878                $this->toDir = $toDir; 
    7979        } 
    80  
     80         
     81        /** 
     82         * Returns the path to the XSL stylesheet 
     83         */ 
    8184        private function getStyleSheet() 
    8285        { 
     
    111114                return $file; 
    112115        } 
    113  
    114         function transform($document) 
     116         
     117        /** 
     118         * Transforms the DOM document 
     119         */ 
     120        private function transform(DOMDocument $document) 
    115121        { 
    116122                $dir = new PhingFile($this->toDir); 
     
    151157         * package="default" to those elements. 
    152158         */ 
    153         function fixPackages(DOMDocument $document) 
     159        private function fixPackages(DOMDocument $document) 
    154160        { 
    155161                $testsuites = $document->getElementsByTagName('testsuite'); 
     
    169175         * @throws BuildException 
    170176         */ 
    171         function main() 
     177        public function main() 
    172178        { 
    173179                $testSuitesDoc = new DOMDocument();