Skip to content

Commit

Permalink
Merge pull request #730 from filisko/patch-1
Browse files Browse the repository at this point in the history
missed quotation marks
  • Loading branch information
stevewest committed Jul 21, 2016
2 parents a5bb39d + 1033671 commit 97f629f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/auth/types/acl.html
Expand Up @@ -195,7 +195,7 @@ <h4 id="method_get_config" class="method">get_config($key, $default = null)</h4>
<th>Example</th>
<td>
<pre class="php"><code>// get a config value of the simpleacl driver, return false if it doesn't exist
$key = Auth::instance(simpleacl)->get_config('key', false);
$key = Auth::instance('simpleacl')->get_config('key', false);
</code></pre>
</td>
</tr>
Expand Down
2 changes: 1 addition & 1 deletion packages/auth/types/group.html
Expand Up @@ -207,7 +207,7 @@ <h4 id="method_get_config" class="method">get_config($key, $default = null)</h4>
<th>Example</th>
<td>
<pre class="php"><code>// get a config value of the simplegroup driver, return false if it doesn't exist
$key = Auth::instance(simplegroup)->get_config('key', false);
$key = Auth::instance('simplegroup')->get_config('key', false);
</code></pre>
</td>
</tr>
Expand Down

0 comments on commit 97f629f

Please sign in to comment.