PhpOffice\PhpPresentation\Shape\Comment::getDate PHP 메소드

getDate() 공개 메소드

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

Usage Example

예제 #1
0
 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