Skip to content
This repository has been archived by the owner on Jan 31, 2020. It is now read-only.

Commit

Permalink
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Helper/Cycle.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class Cycle extends AbstractHelper implements \Iterator
*
* @var array
*/
protected $pointers = array(self::DEFAULT_NAME =>-1) ;
protected $pointers = array(self::DEFAULT_NAME =>-1);

/**
* Array of values
Expand Down
2 changes: 1 addition & 1 deletion src/Helper/HeadScript.php
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@ public function itemToString($item, $indent, $escapeStart, $escapeEnd)
$type = ($this->autoEscape) ? $this->escape($item->type) : $item->type;
$html = '<script type="' . $type . '"' . $attrString . '>';
if (!empty($item->source)) {
$html .= PHP_EOL ;
$html .= PHP_EOL;

if ($addScriptEscape) {
$html .= $indent . ' ' . $escapeStart . PHP_EOL;
Expand Down

0 comments on commit 62935d0

Please sign in to comment.