RSS Git Download  Clone
Raw View History
Blames found: 1 Mode: php Binary: false


Hang on, we reloading big blames...
<?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; } }