| Current Path : /var/www/element/data/www/revenuestory.ru/bitrix/modules/location/lib/common/ |
| Current File : /var/www/element/data/www/revenuestory.ru/bitrix/modules/location/lib/common/repositorytrait.php |
<?php
namespace Bitrix\Location\Common;
trait RepositoryTrait
{
protected $repository = null;
public function getRepository()
{
return $this->repository;
}
protected function setRepository($repository)
{
$this->repository = $repository;
return $this;
}
}