Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Common/Drawing.php
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ public static function twipsToPixels($pValue = 0)
* Convert HTML hexadecimal to RGB
*
* @param string $pValue HTML Color in hexadecimal
* @return array Value in RGB
* @return array|false Value in RGB
*/
public static function htmlToRGB($pValue)
{
Expand Down
2 changes: 2 additions & 0 deletions src/Common/Text.php
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ public static function controlCharacterPHP2OOXML($value = '')
* Return a number formatted for being integrated in xml files
* @param float $number
* @param integer $decimals
* @return string
*/
public static function numberFormat($number, $decimals)
{
Expand All @@ -79,6 +80,7 @@ public static function numberFormat($number, $decimals)
* @param int $dec
* @link http://stackoverflow.com/a/7153133/2235790
* @author velcrow
* @return string
*/
public static function chr($dec)
{
Expand Down
1 change: 1 addition & 0 deletions src/Common/XMLWriter.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ class XMLWriter extends \XMLWriter
*
* @param int $pTemporaryStorage Temporary storage location
* @param string $pTemporaryStorageDir Temporary storage folder
* @param bool $compatibility
*/
public function __construct($pTemporaryStorage = self::STORAGE_MEMORY, $pTemporaryStorageDir = null, $compatibility = false)
{
Expand Down