Skip to content

Instantly share code, notes, and snippets.

@tigrang
Created May 20, 2012 22:08
Show Gist options
  • Save tigrang/2759713 to your computer and use it in GitHub Desktop.
Save tigrang/2759713 to your computer and use it in GitHub Desktop.
<?php
public function inputDefaults($defaults = null, $merge = false) {
if (!is_null($defaults)) {
$this->_inputDefaults = array_merge($merge ? $this->_inputDefaults : array(), (array)$defaults);
}
return $this->_inputDefaults;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment