Skip to content

Commit cb5d3ab

Browse files
committed
Edit todos
1 parent a8e08a9 commit cb5d3ab

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

src/Interfaces/ColorInterface.php

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,6 @@
66

77
use Stringable;
88

9-
/**
10-
* - todo: add ColorspaceInterface::lighten(int $amount = 10)
11-
* - todo: add ColorspaceInterface::darken(int $amount = 10)
12-
* - todo: add ColorspaceInterface::transparize(int $amount = 10)
13-
*/
14-
159
interface ColorInterface extends Stringable
1610
{
1711
/**

src/Interfaces/ImageInterface.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@ interface ImageInterface extends IteratorAggregate, Countable
2727
/**
2828
* Return driver of current image.
2929
*/
30-
public function driver(): DriverInterface;
30+
public function driver(): DriverInterface; // TODO: replace with public property
3131

3232
/**
3333
* Return core of current image.
3434
*/
35-
public function core(): CoreInterface;
35+
public function core(): CoreInterface; // TODO: replace with public property
3636

3737
/**
3838
* Return the origin of the image.

0 commit comments

Comments
 (0)