class PropertyReadOnly extends Logic implements ReadOnlyAttempting to write a value in the read-only property.
Unlike ContainerReadOnly other properties may be editable.
$vars->x = 1;
$vars->y = 2;
$vars->z = 3;
echo $vars->count; // 3
$vars->count = 4; // Property vars::count is read-onlyEven this property can be editable at other time.
$crawler->url = 'http://example.com';
$crawler->run();
$crawler->url = 'http://newsite.loc'; // too late$container- the container or its name$key- the property key
getContainer():string|objectgetKey():string