예제 #1
0
 /**
  * Constructor method
  *
  * @param array|bool $options
  */
 public function __construct($options = null)
 {
     $name = $options['name'] !== null ? $options['name'] : '';
     unset($options['name']);
     parent::__construct($name, $options);
     $this->read();
 }