for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Gacela\Framework\Event\ConfigReader;
use Gacela\Framework\Event\GacelaEventInterface;
use Override;
use function sprintf;
final class ReadPhpConfigEvent implements GacelaEventInterface
{
public function __construct(
private readonly string $absolutePath,
) {
}
public function absolutePath(): string
return $this->absolutePath;
#[Override]
public function toString(): string
return sprintf(
'%s {absolutePath:"%s"}',
self::class,
$this->absolutePath,
);