Gittern\Entity\GitObject\Node\BlobNode::getBlob PHP Méthode

getBlob() public méthode

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

Usage Example

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