1
0
Fork 0
composer/tests/Composer/Test/Repository/Vcs/TestingPerforceDriver.php

26 lines
491 B
PHP

<?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;
}
}