Conditions | 8 |
Paths | 63 |
Total Lines | 69 |
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 |
||
30 | public function batchConfigureAcls(OutputInterface $output, AdminInterface $admin, UserSecurityIdentity $securityIdentity = null): void |
||
31 | { |
||
32 | $securityHandler = $admin->getSecurityHandler(); |
||
33 | if (!$securityHandler instanceof AclSecurityHandlerInterface) { |
||
34 | $output->writeln('Admin class is not configured to use ACL : <info>ignoring</info>'); |
||
35 | |||
36 | return; |
||
37 | } |
||
38 | |||
39 | $output->writeln(sprintf(' > generate ACLs for %s', $admin->getCode())); |
||
40 | $objectOwnersMsg = null === $securityIdentity ? '' : ' and set the object owner'; |
||
41 | |||
42 | /** @var DocumentManager $om */ |
||
43 | $om = $admin->getModelManager()->getDocumentManager(); |
||
44 | $qb = $om->createQueryBuilder($admin->getClass()); |
||
45 | |||
46 | $count = 0; |
||
47 | $countUpdated = 0; |
||
48 | $countAdded = 0; |
||
49 | |||
50 | try { |
||
51 | $batchSize = 20; |
||
52 | $batchSizeOutput = 200; |
||
53 | $objectIds = []; |
||
54 | |||
55 | foreach ($qb->getQuery()->iterate() as $row) { |
||
56 | $objectIds[] = ObjectIdentity::fromDomainObject($row); |
||
57 | $objectIdIterator = new \ArrayIterator($objectIds); |
||
58 | |||
59 | // detach from Doctrine, so that it can be Garbage-Collected immediately |
||
60 | $om->detach($row); |
||
61 | |||
62 | ++$count; |
||
63 | |||
64 | if (0 === ($count % $batchSize)) { |
||
65 | list($batchAdded, $batchUpdated) = $this->configureAcls($output, $admin, $objectIdIterator, $securityIdentity); |
||
66 | $countAdded += $batchAdded; |
||
67 | $countUpdated += $batchUpdated; |
||
68 | $objectIds = []; |
||
69 | } |
||
70 | |||
71 | if (0 === ($count % $batchSizeOutput)) { |
||
72 | $output->writeln(sprintf( |
||
73 | ' - generated class ACEs%s for %s objects (added %s, updated %s)', |
||
74 | $objectOwnersMsg, |
||
75 | $count, |
||
76 | $countAdded, |
||
77 | $countUpdated |
||
78 | )); |
||
79 | } |
||
80 | } |
||
81 | |||
82 | if (\count($objectIds) > 0) { |
||
83 | list($batchAdded, $batchUpdated) = $this->configureAcls($output, $admin, $objectIdIterator, $securityIdentity); |
||
|
|||
84 | $countAdded += $batchAdded; |
||
85 | $countUpdated += $batchUpdated; |
||
86 | } |
||
87 | } catch (\BadMethodCallException $e) { |
||
88 | throw new ModelManagerException('', 0, $e); |
||
89 | } |
||
90 | |||
91 | $output->writeln(sprintf( |
||
92 | ' - [TOTAL] generated class ACEs%s for %s objects (added %s, updated %s)', |
||
93 | $objectOwnersMsg, |
||
94 | $count, |
||
95 | $countAdded, |
||
96 | $countUpdated |
||
97 | )); |
||
98 | } |
||
99 | } |
||
100 |
If you define a variable conditionally, it can happen that it is not defined for all execution paths.
Let’s take a look at an example:
In the above example, the variable $x is defined if you pass “foo” or “bar” as argument for $a. However, since the switch statement has no default case statement, if you pass any other value, the variable $x would be undefined.
Available Fixes
Check for existence of the variable explicitly:
Define a default value for the variable:
Add a value for the missing path: