__construct() 공개 메소드

public __construct ( array $data, Selection $table )
$data array
$table Selection
예제 #1
0
 public function __construct(array $data, NSelection $table)
 {
     if (!($table instanceof Selection || $table instanceof GroupedSelection)) {
         throw new \Nette\InvalidArgumentException();
     }
     parent::__construct($data, $table);
 }