Merge pull request #742 from marijaninjo/patch-1

Consistent code examples
This commit is contained in:
Josh Lockhart
2018-06-20 10:25:54 -04:00
committed by GitHub

View File

@@ -87,7 +87,7 @@ class FooModel
{% highlight php %}
<?php foreach ($fooList as $row): ?>
<?= $row['field1'] ?> - <?= $row['field1'] ?>
<li><?= $row['field1'] ?> - <?= $row['field1'] ?></li>
<?php endforeach ?>
{% endhighlight %}