/**
 * Reset the patcher
 *
 * @return  Patcher  This object for chaining
 *
 * @since   3.0.0
 */
public function reset()
{
    $this->sources = array();
    $this->destinations = array();
    $this->removals = array();
    $this->patches = array();
    return $this;
}