/var/www/vhosts/ihelp.ro/httpdocs/vendor/symfony/config/Builder
Edit: /var/www/vhosts/ihelp.ro/httpdocs/vendor/symfony/config/Builder/Method.php (635B)
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Component\Config\Builder;
/**
* Represents a method when building classes.
*
* @internal
*
* @author Tobias Nyholm
*/
class Method
{
private string $content;
public function __construct(string $content)
{
$this->content = $content;
}
public function getContent(): string
{
return $this->content;
}
}