Merge branch 'gh-pages' of github.com:codeguy/php-the-right-way into gh-pages

This commit is contained in:
Josh Lockhart
2018-06-20 10:34:22 -04:00
7 changed files with 101 additions and 12 deletions

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 %}