Skip to content

Commit

Permalink
Match method signature.
Browse files Browse the repository at this point in the history
  • Loading branch information
mrubinsk committed Jan 20, 2017
1 parent 2b1fbf0 commit e6b01e3
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions framework/Image/lib/Horde/Image/Svg.php
Expand Up @@ -89,11 +89,15 @@ public function display()
}

/**
* Returns the raw data for this image.
* Return raw image data.
*
* @param boolean $convert Unused in SVG driver.
* @param array $options Array of options:
* NONE USED in SVG driver.
*
* @return string The raw image data.
*/
public function raw()
public function raw($convert = false, $options = array())
{
return $this->_svg->bufferObject();
}
Expand Down

0 comments on commit e6b01e3

Please sign in to comment.