You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
491 B
PHTML

<?php
/**
* Created by JetBrains PhpStorm.
* User: matt.whittom
* Date: 8/9/13
* Time: 10:42 AM
* To change this template use File | Settings | File Templates.
*/
namespace Composer\Test\Repository\Vcs;
use Composer\Repository\Vcs\PerforceDriver;
class TestingPerforceDriver extends PerforceDriver {
/*
* Test Helper functions
*/
public function getDepot(){
return $this->depot;
}
public function getBranch(){
return $this->branch;
}
}