| Conditions | 15 |
| Paths | 26 |
| Total Lines | 55 |
| Code Lines | 39 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
Small methods make your code easier to understand, in particular if combined with a good name. Besides, if your method is small, finding a good name is usually much easier.
For example, if you find yourself adding comments to a method's body, this is usually a good sign to extract the commented part to a new method, and use the comment as a starting point when coming up with a good name for this new method.
Commonly applied refactorings include:
If many parameters/temporary variables are present:
| 1 | <?php |
||
| 44 | public function getMetadataForUser() |
||
| 45 | { |
||
| 46 | $reflection = new ReflectionClass($this->userClass); |
||
| 47 | $properties = $reflection->getProperties(); |
||
| 48 | $loginProperty = $passwordProperty = $apiKeyProperty = $lastActionProperty = null; |
||
| 49 | |||
| 50 | foreach ($properties as $reflectionProperty) { |
||
| 51 | foreach (array('login', 'password', 'apiKey', 'lastAction') as $annotation) { |
||
| 52 | $class = sprintf('Ma27\\ApiKeyAuthenticationBundle\\Annotation\\%s', ucfirst($annotation)); |
||
| 53 | $annotationObject = $this->reader->getPropertyAnnotation($reflectionProperty, $class); |
||
|
|
|||
| 54 | |||
| 55 | if ($annotationObject) { |
||
| 56 | switch ($annotation) { |
||
| 57 | case 'login': |
||
| 58 | $this->assertUnique($loginProperty); |
||
| 59 | $loginProperty = $reflectionProperty; |
||
| 60 | break; |
||
| 61 | case 'password': |
||
| 62 | $this->assertUnique($passwordProperty); |
||
| 63 | $passwordProperty = $reflectionProperty; |
||
| 64 | break; |
||
| 65 | case 'apiKey': |
||
| 66 | $this->assertUnique($apiKeyProperty); |
||
| 67 | $apiKeyProperty = $reflectionProperty; |
||
| 68 | break; |
||
| 69 | case 'lastAction': |
||
| 70 | $this->assertUnique($lastActionProperty); |
||
| 71 | $lastActionProperty = $reflectionProperty; |
||
| 72 | } |
||
| 73 | |||
| 74 | if ($loginProperty && $passwordProperty && $apiKeyProperty && $lastActionProperty) { |
||
| 75 | break; |
||
| 76 | } |
||
| 77 | |||
| 78 | continue; |
||
| 79 | } |
||
| 80 | } |
||
| 81 | } |
||
| 82 | |||
| 83 | if (!$loginProperty || !$passwordProperty || !$apiKeyProperty) { |
||
| 84 | throw new \LogicException(sprintf( |
||
| 85 | 'A user class must have a "%s", "%s", "%s" annotation!', |
||
| 86 | 'Login', |
||
| 87 | 'Password', |
||
| 88 | 'ApiKey' |
||
| 89 | )); |
||
| 90 | } |
||
| 91 | |||
| 92 | return array( |
||
| 93 | ClassMetadata::LOGIN_PROPERTY => $loginProperty, |
||
| 94 | ClassMetadata::PASSWORD_PROPERTY => $passwordProperty, |
||
| 95 | ClassMetadata::API_KEY_PROPERTY => $apiKeyProperty, |
||
| 96 | ClassMetadata::LAST_ACTION_PROPERTY => $lastActionProperty, |
||
| 97 | ); |
||
| 98 | } |
||
| 99 | |||
| 122 |
This check looks for function or method calls that always return null and whose return value is assigned to a variable.
The method
getObject()can return nothing but null, so it makes no sense to assign that value to a variable.The reason is most likely that a function or method is imcomplete or has been reduced for debug purposes.