Skip to content

Commit

Permalink
Changed cache content var type to array
Browse files Browse the repository at this point in the history
  • Loading branch information
taiwen committed May 30, 2013
1 parent 7a25b3e commit f84aad3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/Pi/Application/Service/Render.php
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,10 @@ class Render extends AbstractService
);

/**
* Cached content
* @var string
* Cached contents
* @var array
*/
protected $cachedContent = null;
protected $cachedContent = array();

/**
* Generated content
Expand Down Expand Up @@ -304,4 +304,4 @@ public function flushCache($namespace = null, $key = null)
Pi::service('cache')->clearByNamespace($module, $this->getStorage());
}
}
}
}

0 comments on commit f84aad3

Please sign in to comment.