Merge branch '3.4' into 4.3

* 3.4:
  More docblock fixes
This commit is contained in:
Nicolas Grekas 2019-08-20 23:02:25 +02:00
commit 7a0787c8bd
3 changed files with 11 additions and 23 deletions

View File

@ -60,6 +60,8 @@ final class CacheItem implements ItemInterface
/**
* {@inheritdoc}
*
* @return $this
*/
public function set($value)
{
@ -70,6 +72,8 @@ final class CacheItem implements ItemInterface
/**
* {@inheritdoc}
*
* @return $this
*/
public function expiresAt($expiration)
{
@ -86,6 +90,8 @@ final class CacheItem implements ItemInterface
/**
* {@inheritdoc}
*
* @return $this
*/
public function expiresAfter($time)
{

View File

@ -121,8 +121,10 @@ class FormFieldRegistry
if ((!\is_array($value) && $target instanceof Field\FormField) || $target instanceof Field\ChoiceFormField) {
$target->setValue($value);
} elseif (\is_array($value)) {
$fields = self::create($name, $value);
foreach ($fields->all() as $k => $v) {
$registry = new static();
$registry->base = $name;
$registry->fields = $value;
foreach ($registry->all() as $k => $v) {
$this->set($k, $v);
}
} else {
@ -140,26 +142,6 @@ class FormFieldRegistry
return $this->walk($this->fields, $this->base);
}
/**
* Creates an instance of the class.
*
* This function is made private because it allows overriding the $base and
* the $values properties without any type checking.
*
* @param string $base The fully qualified name of the base field
* @param array $values The values of the fields
*
* @return static
*/
private static function create($base, array $values)
{
$registry = new static();
$registry->base = $base;
$registry->fields = $values;
return $registry;
}
/**
* Transforms a PHP array in a list of fully qualified name / value.
*

View File

@ -34,7 +34,7 @@ interface DenormalizerInterface
* @param string $format Format the given data was extracted from
* @param array $context Options available to the denormalizer
*
* @return object
* @return object|array
*
* @throws BadMethodCallException Occurs when the normalizer is not called in an expected context
* @throws InvalidArgumentException Occurs when the arguments are not coherent or not supported