芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/qrafiqxcreativeagency.com/accounts/office/vendor/symfony/config/Builder/Method.php
* * 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; } }