You are here

public function JSNode::__get in Javascript Aggregator 6

File

./jsminplus.php, line 1686

Class

JSNode

Code

public function __get($name) {
  if (isset($this->{$name})) {
    return $this->{$name};
  }
  return null;
}