| Conditions | 3 |
| Paths | 3 |
| Total Lines | 16 |
| Code Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 24 | public function renderInternal() |
||
| 25 | { |
||
| 26 | |||
| 27 | // TV nicht geladen |
||
| 28 | if (!ExtensionManagementUtility::isLoaded('templavoila')) { |
||
| 29 | $defaultOutput = $this->configuration['defaultOutput']; |
||
| 30 | if ($defaultOutput) { |
||
| 31 | $defaultOutput = str_replace('###CType###', $this->contentObject->data['CType'], $defaultOutput); |
||
| 32 | } |
||
| 33 | return $defaultOutput; |
||
| 34 | } |
||
| 35 | $pi1 = GeneralUtility::makeInstance('tx_templavoila_pi1'); |
||
| 36 | $pi1->cObj = $this->contentObject; |
||
| 37 | $lines[] = $pi1->renderElement($this->contentObject->data, 'tt_content'); |
||
|
|
|||
| 38 | return $lines; |
||
| 39 | } |
||
| 40 | } |
||
| 41 |
Adding an explicit array definition is generally preferable to implicit array definition as it guarantees a stable state of the code.
Let’s take a look at an example:
As you can see in this example, the array
$myArrayis initialized the first time when the foreach loop is entered. You can also see that the value of thebarkey is only written conditionally; thus, its value might result from a previous iteration.This might or might not be intended. To make your intention clear, your code more readible and to avoid accidental bugs, we recommend to add an explicit initialization $myArray = array() either outside or inside the foreach loop.