mirror of
https://github.com/klaussilveira/gitlist.git
synced 2025-11-18 03:30:55 +01:00
29 lines
444 B
PHP
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;
|
|
}
|
|
} |