Skip to content

Commit

Permalink
ENH Fix deprecation issues for PHP 8.1 compatibility (#484)
Browse files Browse the repository at this point in the history
  • Loading branch information
emteknetnz committed Apr 6, 2022
1 parent 5ebef90 commit a850ecc
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/php/Dev/Tasks/SS4FileMigrationHelperTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -122,8 +122,12 @@ private function generateImage($targetedStage, $filename)
->canvas(400, 300, '#142237')
->text($targetedStage, 20, 170, function (AbstractFont $font) {
$font->color('#44C8F5');
$font->align('');
$font->valign('');
})->text($filename, 20, 185, function (AbstractFont $font) {
$font->color('#ffffff');
$font->align('');
$font->valign('');
})->rectangle(20, 200, 100, 202, function (AbstractShape $shape) {
$shape->background('#DA1052');
});
Expand Down

0 comments on commit a850ecc

Please sign in to comment.