Skip to content

Commit

Permalink
Merge pull request #3 from tokenpost/master
Browse files Browse the repository at this point in the history
Private to protected
  • Loading branch information
rmrevin committed Aug 12, 2014
2 parents ec238da + d1b3a2f commit 2c5def9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions View.php
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ private function minify()
/**
* @return self
*/
private function minifyCSS()
protected function minifyCSS()
{
if (!empty($this->cssFiles)) {
$css_files = array_keys($this->cssFiles);
Expand Down Expand Up @@ -232,7 +232,7 @@ private function minifyCSS()
/**
* @return self
*/
private function minifyJS()
protected function minifyJS()
{
if (!empty($this->jsFiles)) {
$js_files = $this->jsFiles;
Expand Down

0 comments on commit 2c5def9

Please sign in to comment.