Conditions | 7 |
Paths | 6 |
Total Lines | 64 |
Code Lines | 30 |
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 declare(strict_types=1); |
||
48 | public function reset(HTTPRequest $request): HTTPResponse |
||
49 | { |
||
50 | if (!$request->isPOST() || !$request->param('ID')) { |
||
51 | return $this->jsonResponse( |
||
52 | [ |
||
53 | 'error' => _t(__CLASS__ . '.BAD_REQUEST', 'Invalid request') |
||
54 | ], |
||
55 | 400 |
||
56 | ); |
||
57 | } |
||
58 | |||
59 | $body = json_decode($request->getBody() ?? '', true); |
||
60 | |||
61 | if (!SecurityToken::inst()->check($body['csrf_token'] ?? null)) { |
||
62 | return $this->jsonResponse( |
||
63 | [ |
||
64 | 'error' => _t(__CLASS__ . '.INVALID_CSRF_TOKEN', 'Invalid or missing CSRF token') |
||
65 | ], |
||
66 | 400 |
||
67 | ); |
||
68 | } |
||
69 | |||
70 | if (!Permission::check(MemberExtension::MFA_ADMINISTER_REGISTERED_METHODS)) { |
||
71 | return $this->jsonResponse( |
||
72 | [ |
||
73 | 'error' => _t( |
||
74 | __CLASS__ . '.INSUFFICIENT_PERMISSIONS', |
||
75 | 'Insufficient permissions to reset user' |
||
76 | ) |
||
77 | ], |
||
78 | 403 |
||
79 | ); |
||
80 | } |
||
81 | |||
82 | /** @var Member $memberToReset */ |
||
83 | $memberToReset = Member::get()->byID($request->param('ID')); |
||
84 | |||
85 | if ($memberToReset === null) { |
||
86 | return $this->jsonResponse( |
||
87 | [ |
||
88 | 'error' => _t( |
||
89 | __CLASS__ . '.INVALID_MEMBER', |
||
90 | 'Requested member for reset not found' |
||
91 | ) |
||
92 | ], |
||
93 | 403 |
||
94 | ); |
||
95 | } |
||
96 | |||
97 | $sent = $this->sendResetEmail($memberToReset); |
||
98 | |||
99 | if (!$sent) { |
||
100 | return $this->jsonResponse( |
||
101 | [ |
||
102 | 'error' => _t( |
||
103 | __CLASS__ . '.EMAIL_NOT_SENT', |
||
104 | 'Email sending failed' |
||
105 | ) |
||
106 | ], |
||
107 | 500 |
||
108 | ); |
||
109 | } |
||
110 | |||
111 | return $this->jsonResponse(['success' => true], 200); |
||
112 | } |
||
161 |
Let?s assume that you have a directory layout like this:
and let?s assume the following content of
Bar.php
:If both files
OtherDir/Foo.php
andSomeDir/Foo.php
are loaded in the same runtime, you will see a PHP error such as the following:PHP Fatal error: Cannot use SomeDir\Foo as Foo because the name is already in use in OtherDir/Foo.php
However, as
OtherDir/Foo.php
does not necessarily have to be loaded and the error is only triggered if it is loaded beforeOtherDir/Bar.php
, this problem might go unnoticed for a while. In order to prevent this error from surfacing, you must import the namespace with a different alias: