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


Hang on, we reloading big blames...
<?php /* * This file is part of the Gitter library. * * (c) Klaus Silveira <klaussilveira@php.net> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Gitter\Model; use Gitter\Repository; abstract class AbstractModel { protected $repository;
public function getRepository(): Repository
{ return $this->repository; } public function setRepository(Repository $repository) { $this->repository = $repository; return $this; } }