Exemplo n.º 1
0
 /**
  * Get background
  *
  * @return string
  */
 public function getBgColor()
 {
     if ($this->shading !== null) {
         return $this->shading->getFill();
     } else {
         return null;
     }
 }
Exemplo n.º 2
0
 /**
  * Get background
  *
  * @return string
  */
 public function getBgColor()
 {
     if (!is_null($this->shading)) {
         return $this->shading->getFill();
     }
 }