Tomas Votruba 2535f6a548 Updated Rector to commit 4e71338466d10e09447d72ccbbed89e64f6335bf
4e71338466 [Privatization] Skip Entity and Embeddable Attribute Doctrine\ORM\Mapping on FinalizeClassesWithoutChildrenRector (#155)
2021-06-05 14:17:34 +00:00

30 lines
631 B
PHP

<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace RectorPrefix20210605\Symfony\Component\DependencyInjection\Attribute;
/**
* An attribute to tell under which environement this class should be registered as a service.
*
* @author Nicolas Grekas <p@tchwork.com>
* @Attribute
*/
class When
{
/**
* @var string
*/
public $env;
public function __construct(string $env)
{
$this->env = $env;
}
}