Gittern\Entity\GitObject\Node\BlobNode::getBlob PHP Method

getBlob() public method

public getBlob ( )
    public function getBlob()
    {
        return $this->blob;
    }

Usage Example

Beispiel #1
0
 public static function createFromBlobNode(BlobNode $node)
 {
     $entry = new IndexEntry();
     $entry->setBlob($node->getBlob());
     $entry->setMode($node->getIntegerMode());
     return $entry;
 }