Files
GitList/lib/Git/ScopeAware.php
2012-07-14 15:47:46 -03:00

30 lines
445 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;
}
}