コード例 #1
0
 public function __construct(BusinessLogicMapperBase $mapper)
 {
     parent::__construct();
     $this->_mapper = $mapper;
 }
コード例 #2
0
 /**
  * ObjectHistoryRepository constructor.
  */
 public function __construct(ReplicationHistoryMapper $mapper)
 {
     $this->_mapper = $mapper;
     parent::__construct();
 }
コード例 #3
0
 /**
  * ObjectHistoryRepository constructor.
  */
 public function __construct(ReplicatedObjectMapper $mapper)
 {
     $this->_mapper = $mapper;
     parent::__construct();
 }
コード例 #4
0
 public function __construct(BusinessLogicMapperBase $mapper, ClientProxyEndpointMapper $endpointMapper)
 {
     parent::__construct();
     $this->_mapper = $mapper;
     $this->_endpointMapper = $endpointMapper;
 }