Skip to content

Commit 8749d03

Browse files
author
Torben Köhn
committed
Fixed class composition error
1 parent 77e25ca commit 8749d03

File tree

5 files changed

+3
-5
lines changed

5 files changed

+3
-5
lines changed

src/Phim/Color/HslColorTrait.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66

77
trait HslColorTrait
88
{
9-
use HsColorTrait;
109

1110
protected $lightness = 0;
1211

src/Phim/Color/HslaColorTrait.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44

55
trait HslaColorTrait
66
{
7-
use HslColorTrait, AlphaColorTrait;
7+
use AlphaColorTrait;
88
}

src/Phim/Color/HsvColorTrait.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66

77
trait HsvColorTrait
88
{
9-
use HsColorTrait;
109

1110
protected $value = 0;
1211

src/Phim/Color/HsvaColorTrait.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44

55
trait HsvaColorTrait
66
{
7-
use HsvColorTrait, AlphaColorTrait;
7+
use AlphaColorTrait;
88
}

src/Phim/Color/RgbaColorTrait.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44

55
trait RgbaColorTrait
66
{
7-
use RgbColorTrait, AlphaColorTrait;
7+
use AlphaColorTrait;
88
}

0 commit comments

Comments
 (0)