Files
GitList/lib/Git/ScopeAware.php
Klaus Silveira df43c987cf Initial commit
2012-05-18 01:38:33 -03:00

29 lines
444 B
PHP

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