for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Cesargb\LaravelLog\Events;
use Exception;
class RotateHasFailed
{
public string $filename;
public Exception $exception;
public function __construct(string $filename, Exception $exception)
$this->filename = $filename;
$this->exception = $exception;
}