for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Related endpoints
* User: moyo
* Date: 24/11/2017
* Time: 4:01 PM
*/
namespace Carno\Tracing\Chips;
use Carno\Tracing\Standard\Endpoint;
trait RelatedEndpoints
{
* @var Endpoint
private $localEP = null;
private $remoteEP = null;
* @param Endpoint $endpoint
public function setLocalEndpoint(Endpoint $endpoint) : void
$this->localEP = $endpoint;
}
* @return Endpoint
public function getLocalEndpoint() : ?Endpoint
return $this->localEP;
public function setRemoteEndpoint(Endpoint $endpoint) : void
$this->remoteEP = $endpoint;
public function getRemoteEndpoint() : ?Endpoint
return $this->remoteEP;