예제 #1
0
파일: Paragraph.php 프로젝트: hcvcastro/pxp
 /**
  * Get spacing between lines
  *
  * @return int
  */
 public function getSpacing()
 {
     if ($this->spacing !== null) {
         return $this->spacing->getLine();
     } else {
         return null;
     }
 }
예제 #2
0
 /**
  * Get spacing between lines
  *
  * @return int
  */
 public function getSpacing()
 {
     if (!is_null($this->spacing)) {
         return $this->spacing->getLine();
     }
 }