Exemplo n.º 1
0
 /**
  * Get space before paragraph
  *
  * @return integer
  */
 public function getSpaceBefore()
 {
     if ($this->spacing !== null) {
         return $this->spacing->getBefore();
     } else {
         return null;
     }
 }
Exemplo n.º 2
0
 /**
  * Get space before paragraph
  *
  * @return integer
  */
 public function getSpaceBefore()
 {
     if (!is_null($this->spacing)) {
         return $this->spacing->getBefore();
     }
 }