Your IP : 172.71.120.3


Current Path : /var/www/element/data/www/revenuestory.ru/bitrix/modules/location/lib/common/
Upload File :
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;
	}
}