Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions rules/no-functioncall-in-loop.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ for($i = 0; $i < $count; $i++) {
```
This second code will do the same as the first, but speed will be dramatically increased.

##Also avoid constants expressions
## Also avoid constants expressions

```php
<?php
Expand Down Expand Up @@ -92,4 +92,4 @@ for($i = 0; $i < count($j); $i++) {

## Further Reading

-->
-->