__construct() public method

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