mpdf / mpdf-examples

Example scripts for mPDF
124 stars 148 forks source link

Images load issue #26

Open fayzasalman opened 1 week ago

fayzasalman commented 1 week ago

I encountered an error in the example04_images.php file due to the logger code implementation. The issue arose from a method signature mismatch with the Psr\Log\AbstractLogger. I have fixed the code by aligning the method signature with the expected parameters.

Changes Made:

Fixed Code:

php
class CustomLogger extends \Psr\Log\AbstractLogger implements \Psr\Log\LoggerInterface
{
    public function log($level, $message, array $context = []): void
    {
        echo $level . ': ' . $message . "\n";
    }
}

Steps to Verify:

I have pushed the updated code to the repository. Please review it.