Kaynağa Gözat

Merge remote branch 'lsmith77/get_set_normalizer_typo_fix'

* lsmith77/get_set_normalizer_typo_fix:
  typo fix
Fabien Potencier 14 yıl önce
ebeveyn
işleme
a756553dd5

+ 1 - 1
src/Symfony/Component/Serializer/Normalizer/GetSetMethodNormalizer.php

@@ -131,7 +131,7 @@ class GetSetMethodNormalizer extends AbstractNormalizer
      */
     private function supports($class)
     {
-        $class = new \ReflectionClass($type);
+        $class = new \ReflectionClass($class);
         $methods = $class->getMethods(\ReflectionMethod::IS_PUBLIC);
         foreach ($methods as $method) {
             if ($this->isGetMethod($method)) {