You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Assume we have a service with multi-line string used as value for property:
some_service_id:
class: stdClassproperties:
test1: 1test2: > Text ( Inner Text )test3: 321
This is how this definition dumped to php code when PhpDumper used with as_files option (default):
<?phpuseSymfony\Component\DependencyInjection\Argument\RewindableGenerator;
// This file has been auto-generated by the Symfony Dependency Injection Component for internal use.// Returns the public 'some_service_id' shared service.$this->services['some_service_id'] = $instance = new \stdClass();
$instance->test1 = 1;
$instance->test2 = 'Text (
r Text
$instance->test3 = 321;
return $instance;
This file contains incorrect test2 property, and incorrect syntax.
The text was updated successfully, but these errors were encountered:
Assume we have a service with multi-line string used as value for property:
This is how this definition dumped to php code when
PhpDumper
used withas_files
option (default):This file contains incorrect
test2
property, and incorrect syntax.The text was updated successfully, but these errors were encountered: