for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace GacelaTest\Feature\Framework\Plugins\Module\Infrastructure;
use Gacela\Framework\Bootstrap\GacelaConfig;
use GacelaTest\Fixtures\StringValue;
final class ExampleBeforePluginWithoutConstructor
{
public function __invoke(GacelaConfig $config): void
$config->addBinding(
StringValue::class,
new StringValue('Set from plugin ExampleBeforePluginWithoutConstructor'),
);
}