Updates to vendors etc

This commit is contained in:
Chris Hunt
2025-07-11 15:57:48 +01:00
parent d972cbcd0a
commit 8fb6438254
8043 changed files with 248005 additions and 189479 deletions

View File

@@ -29,7 +29,7 @@ class OptionsResolverIntrospector
$this->get = \Closure::bind(function ($property, $option, $message) {
/** @var OptionsResolver $this */
if (!$this->isDefined($option)) {
throw new UndefinedOptionsException(sprintf('The option "%s" does not exist.', $option));
throw new UndefinedOptionsException(\sprintf('The option "%s" does not exist.', $option));
}
if (!\array_key_exists($option, $this->{$property})) {
@@ -45,7 +45,7 @@ class OptionsResolverIntrospector
*/
public function getDefault(string $option): mixed
{
return ($this->get)('defaults', $option, sprintf('No default value was set for the "%s" option.', $option));
return ($this->get)('defaults', $option, \sprintf('No default value was set for the "%s" option.', $option));
}
/**
@@ -55,7 +55,7 @@ class OptionsResolverIntrospector
*/
public function getLazyClosures(string $option): array
{
return ($this->get)('lazy', $option, sprintf('No lazy closures were set for the "%s" option.', $option));
return ($this->get)('lazy', $option, \sprintf('No lazy closures were set for the "%s" option.', $option));
}
/**
@@ -65,7 +65,7 @@ class OptionsResolverIntrospector
*/
public function getAllowedTypes(string $option): array
{
return ($this->get)('allowedTypes', $option, sprintf('No allowed types were set for the "%s" option.', $option));
return ($this->get)('allowedTypes', $option, \sprintf('No allowed types were set for the "%s" option.', $option));
}
/**
@@ -75,7 +75,7 @@ class OptionsResolverIntrospector
*/
public function getAllowedValues(string $option): array
{
return ($this->get)('allowedValues', $option, sprintf('No allowed values were set for the "%s" option.', $option));
return ($this->get)('allowedValues', $option, \sprintf('No allowed values were set for the "%s" option.', $option));
}
/**
@@ -91,7 +91,7 @@ class OptionsResolverIntrospector
*/
public function getNormalizers(string $option): array
{
return ($this->get)('normalizers', $option, sprintf('No normalizer was set for the "%s" option.', $option));
return ($this->get)('normalizers', $option, \sprintf('No normalizer was set for the "%s" option.', $option));
}
/**
@@ -99,6 +99,16 @@ class OptionsResolverIntrospector
*/
public function getDeprecation(string $option): array
{
return ($this->get)('deprecated', $option, sprintf('No deprecation was set for the "%s" option.', $option));
return ($this->get)('deprecated', $option, \sprintf('No deprecation was set for the "%s" option.', $option));
}
/**
* @return \Closure[]
*
* @throws NoConfigurationException when no nested option is configured
*/
public function getNestedOptions(string $option): array
{
return ($this->get)('nested', $option, \sprintf('No nested option was set for the "%s" option.', $option));
}
}