PhpOffice\PhpPresentation\Shape\Comment::getDate PHP Method

getDate() public method

public getDate ( ) : integer
return integer
    public function getDate()
    {
        return $this->dtComment;
    }

Usage Example

 public function testGetSetDate()
 {
     $expectedDate = time();
     $object = new Comment();
     $this->assertInternalType('int', $object->getDate());
     $this->assertInstanceOf('PhpOffice\\PhpPresentation\\Shape\\Comment', $object->setDate($expectedDate));
     $this->assertEquals($expectedDate, $object->getDate());
     $this->assertInternalType('int', $object->getDate());
 }
All Usage Examples Of PhpOffice\PhpPresentation\Shape\Comment::getDate