Your IP : 3.143.222.238


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