예제 #1
0
파일: Paragraph.php 프로젝트: hcvcastro/pxp
 /**
  * Get space before paragraph
  *
  * @return integer
  */
 public function getSpaceBefore()
 {
     if ($this->spacing !== null) {
         return $this->spacing->getBefore();
     } else {
         return null;
     }
 }
예제 #2
0
 /**
  * Get space before paragraph
  *
  * @return integer
  */
 public function getSpaceBefore()
 {
     if (!is_null($this->spacing)) {
         return $this->spacing->getBefore();
     }
 }