Chris@14: Chris@14: * Chris@14: * For the full copyright and license information, please view the LICENSE Chris@14: * file that was distributed with this source code. Chris@14: */ Chris@14: Chris@14: namespace PhpUnitCoverageTest; Chris@14: Chris@14: class BarCov Chris@14: { Chris@14: private $foo; Chris@14: Chris@14: public function __construct(FooCov $foo) Chris@14: { Chris@14: $this->foo = $foo; Chris@14: } Chris@14: Chris@14: public function barZ() Chris@14: { Chris@14: $this->foo->fooZ(); Chris@14: Chris@14: return 'bar'; Chris@14: } Chris@14: }