Uniformize exception vars according to our CS

This commit is contained in:
Kévin Dunglas 2016-10-05 19:21:13 +02:00
parent ed8ccd1689
commit cc9a499482
No known key found for this signature in database
GPG Key ID: 4D04EBEF06AAF3A6
2 changed files with 6 additions and 6 deletions

View File

@ -208,7 +208,7 @@ class PhpDocExtractor implements PropertyDescriptionExtractorInterface, Property
// Use a ReflectionProperty instead of $class to get the parent class if applicable // Use a ReflectionProperty instead of $class to get the parent class if applicable
try { try {
$reflectionProperty = new \ReflectionProperty($class, $property); $reflectionProperty = new \ReflectionProperty($class, $property);
} catch (\ReflectionException $reflectionException) { } catch (\ReflectionException $e) {
return; return;
} }
@ -260,7 +260,7 @@ class PhpDocExtractor implements PropertyDescriptionExtractorInterface, Property
) { ) {
break; break;
} }
} catch (\ReflectionException $reflectionException) { } catch (\ReflectionException $e) {
// Try the next prefix if the method doesn't exist // Try the next prefix if the method doesn't exist
} }
} }

View File

@ -51,7 +51,7 @@ class ReflectionExtractor implements PropertyListExtractorInterface, PropertyTyp
{ {
try { try {
$reflectionClass = new \ReflectionClass($class); $reflectionClass = new \ReflectionClass($class);
} catch (\ReflectionException $reflectionException) { } catch (\ReflectionException $e) {
return; return;
} }
@ -261,7 +261,7 @@ class ReflectionExtractor implements PropertyListExtractorInterface, PropertyTyp
$reflectionProperty = new \ReflectionProperty($class, $property); $reflectionProperty = new \ReflectionProperty($class, $property);
return $reflectionProperty->isPublic(); return $reflectionProperty->isPublic();
} catch (\ReflectionException $reflectionExcetion) { } catch (\ReflectionException $e) {
// Return false if the property doesn't exist // Return false if the property doesn't exist
} }
@ -290,7 +290,7 @@ class ReflectionExtractor implements PropertyListExtractorInterface, PropertyTyp
if (0 === $reflectionMethod->getNumberOfRequiredParameters()) { if (0 === $reflectionMethod->getNumberOfRequiredParameters()) {
return array($reflectionMethod, $prefix); return array($reflectionMethod, $prefix);
} }
} catch (\ReflectionException $reflectionException) { } catch (\ReflectionException $e) {
// Return null if the property doesn't exist // Return null if the property doesn't exist
} }
} }
@ -319,7 +319,7 @@ class ReflectionExtractor implements PropertyListExtractorInterface, PropertyTyp
if ($reflectionMethod->getNumberOfParameters() >= 1) { if ($reflectionMethod->getNumberOfParameters() >= 1) {
return array($reflectionMethod, $prefix); return array($reflectionMethod, $prefix);
} }
} catch (\ReflectionException $reflectionException) { } catch (\ReflectionException $e) {
// Try the next prefix if the method doesn't exist // Try the next prefix if the method doesn't exist
} }
} }