Skip to content

Commit

Permalink
Go travis go
Browse files Browse the repository at this point in the history
  • Loading branch information
Viburnum committed Jun 21, 2016
1 parent b8f5c87 commit 8e768a4
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions Model/Document.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@
use StingerSoft\EntitySearchBundle\Model\Document as BaseDocument;
use Doctrine\Common\Collections\ArrayCollection;

/**
* Backend independent document implementation
*/
abstract class Document implements BaseDocument {

protected $id;
Expand Down Expand Up @@ -160,13 +163,14 @@ public function setEntityId($entityId) {
$this->entityId = json_encode($entityId);
return $this;
}
public function getInternalEntityId(){

public function getInternalEntityId() {
return $this->entityId;
}

/**
* Creates a new field instance
*
* @return Field
*/
protected abstract function newFieldInstance();
Expand Down

0 comments on commit 8e768a4

Please sign in to comment.