Tribe__Repository__Decorator::where( $key, $value = null )
{@inheritdoc}
Source
File: src/Tribe/Repository/Decorator.php
public function where( $key, $value ) {
$call_args = func_get_args();
call_user_func_array( array( $this->decorated, 'where' ), $call_args );
return $this;
}