Carew\Document::getPath PHP Method

getPath() public method

public getPath ( )
    public function getPath()
    {
        return $this->path;
    }

Usage Example

Example #1
0
 public function testConstructor()
 {
     $document = new Document(new SplFileInfo(__FILE__, '.', '.'));
     $this->assertSame(file_get_contents(__FILE__), $document->getBody());
     $this->assertSame(file_get_contents(__FILE__), $document->getBodyDecorated());
     $this->assertSame('DocumentTest.php', $document->getPath());
 }
All Usage Examples Of Carew\Document::getPath