Beispiel #1
0
 /**
  * If a Renderable object has tried to use a empty variable it returns true otherwise and when no variable
  * is used false. Needed for the Group element.
  *
  * @return boolean|null
  */
 public function hasAccessEmptyVariable()
 {
     if ($this->render instanceof Groupable == true) {
         return $this->render->hasAccessEmptyVariable();
     }
     return null;
 }