for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Spiral\Core\Attribute;
/**
* Set a scope in which the dependency can be resolved.
*
* @internal We are testing this feature, it may be changed in the future.
*/
#[\Attribute(\Attribute::TARGET_CLASS)]
final class Scope
{
public function __construct(
public string $name,
) {
}