Initial commit

This commit is contained in:
Klaus Silveira
2012-05-18 01:38:33 -03:00
commit df43c987cf
244 changed files with 20826 additions and 0 deletions

29
lib/Git/ScopeAware.php Normal file
View File

@@ -0,0 +1,29 @@
<?php
namespace Git;
class ScopeAware
{
protected $client;
protected $repository;
public function setClient(Client $client)
{
$this->client = $client;
}
public function getClient()
{
return $this->client;
}
public function getRepository()
{
return $this->repository;
}
public function setRepository($repository)
{
$this->repository = $repository;
}
}