Ejemplo n.º 1
0
 /**
  * Set shading
  *
  * @param array $value
  * @return self
  */
 public function setIndentation($value = null)
 {
     if (is_array($value)) {
         if (!$this->indentation instanceof Indentation) {
             $this->indentation = new Indentation();
         }
         $this->indentation->setStyleByArray($value);
     } else {
         $this->indentation = null;
     }
     return $this;
 }