Changeset 7

Show
Ignore:
Timestamp:
02/10/06 14:43:10 (3 years ago)
Author:
mrook
Message:

Make private fields protected so we can access them in subclasses

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/classes/phing/tasks/ext/phpunit2/FormatterElement.php

    r1 r7  
    3434class FormatterElement 
    3535{ 
    36         private $formatter = NULL; 
     36        protected $formatter = NULL; 
    3737         
    38         private $type = ""; 
     38        protected $type = ""; 
    3939         
    40         private $useFile = true; 
     40        protected $useFile = true; 
    4141         
    42         private $toDir = "."; 
     42        protected $toDir = "."; 
    4343         
    44         private $outfile = ""; 
     44        protected $outfile = ""; 
    4545 
    4646        function setType($type)