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