Skip to content

Commit

Permalink
Merge pull request #76 from simondubois/5.1
Browse files Browse the repository at this point in the history
Fix incorrect param type in HtmlBuilder codeblock
  • Loading branch information
adamgoose committed Sep 3, 2015
2 parents 3ff2b89 + 3617dac commit 7ea28ee
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/HtmlBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ public function image($url, $alt = null, $attributes = array(), $secure = null)

return '<img src="'.$this->url->asset($url, $secure).'"'.$this->attributes($attributes).'>';
}

/**
* Generate a link to a Favicon file.
*
Expand Down Expand Up @@ -313,7 +313,7 @@ protected function listing($type, $list, $attributes = array())
*
* @param mixed $key
* @param string $type
* @param string $value
* @param mixed $value
* @return string
*/
protected function listingElement($key, $type, $value)
Expand All @@ -333,7 +333,7 @@ protected function listingElement($key, $type, $value)
*
* @param mixed $key
* @param string $type
* @param string $value
* @param mixed $value
* @return string
*/
protected function nestedListing($key, $type, $value)
Expand Down

0 comments on commit 7ea28ee

Please sign in to comment.