mirror of
https://github.com/klaussilveira/gitlist.git
synced 2025-11-17 19:20:56 +01:00
Coding style - camelCase for variables
This commit is contained in:
@@ -7,7 +7,7 @@ use Gitter\Client;
|
||||
class InterfaceTest extends WebTestCase
|
||||
{
|
||||
protected static $tmpdir;
|
||||
protected static $git_path;
|
||||
protected static $gitPath;
|
||||
|
||||
public static function setUpBeforeClass()
|
||||
{
|
||||
@@ -32,7 +32,7 @@ class InterfaceTest extends WebTestCase
|
||||
$options['hidden'] = array(self::$tmpdir . '/hiddenrepo');
|
||||
$git = new Client($options);
|
||||
|
||||
self::$git_path = $options['path'];
|
||||
self::$gitPath = $options['path'];
|
||||
|
||||
// GitTest repository fixture
|
||||
$git->createRepository(self::$tmpdir . 'GitTest');
|
||||
@@ -85,7 +85,7 @@ class InterfaceTest extends WebTestCase
|
||||
{
|
||||
$config = new \GitList\Config(array(
|
||||
'git' => array(
|
||||
'client' => self::$git_path,
|
||||
'client' => self::$gitPath,
|
||||
'repositories' => self::$tmpdir,
|
||||
),
|
||||
'app' => array(
|
||||
|
||||
Reference in New Issue
Block a user