statement = $statement; $this->connexion = $connexion; } /** * @param array $input_parameters * @return bool */ public function execute($input_parameters = []) : bool { $this->parameters = $input_parameters; $this->connexion->stackStatement($this); return true; } /** * @return string */ public function getStatement() : String { return $this->statement; } /** * @return array */ public function getParameters() : array { return $this->parameters; } }