Skip to content

Commit 7a84e3b

Browse files
author
Joel Day
committed
fix PSR2
1 parent 67fb9e2 commit 7a84e3b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/PhpPresentation/Style/Color.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ public function getAlpha()
9696
{
9797
$alpha = 100;
9898
if (strlen($this->argb) >= 6) {
99-
$dec = hexdec(substr($this->argb,0,2));
99+
$dec = hexdec(substr($this->argb, 0, 2));
100100
$alpha = number_format(( $dec/255 ) * 100, 2);
101101
}
102102
return $alpha;

0 commit comments

Comments
 (0)