mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-23 11:14:38 +01:00
4e71338466
[Privatization] Skip Entity and Embeddable Attribute Doctrine\ORM\Mapping on FinalizeClassesWithoutChildrenRector (#155)
30 lines
631 B
PHP
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;
|
|
}
|
|
}
|