Skip to content

Commit

Permalink
Deprecate features being removed in 3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed Oct 21, 2013
1 parent bcafde6 commit e27e887
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions lib/Cake/View/Helper.php
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,7 @@ public function __call($method, $params) {
*
* @param string $name Name of the property being accessed.
* @return mixed Helper or property found at $name
* @deprecated Accessing request properties through this method is deprecated and will be removed in 3.0.
*/
public function __get($name) {
if (isset($this->_helperMap[$name]) && !isset($this->{$name})) {
Expand Down Expand Up @@ -224,6 +225,7 @@ public function __get($name) {
* @param string $name Name of the property being accessed.
* @param mixed $value
* @return void
* @deprecated This method will be removed in 3.0
*/
public function __set($name, $value) {
switch ($name) {
Expand Down Expand Up @@ -404,6 +406,7 @@ public function assetTimestamp($path) {
*
* @param string|array $output Either an array of strings to clean or a single string to clean.
* @return string|array cleaned content for output
* @deprecated This method will be removed in 3.0
*/
public function clean($output) {
$this->_reset();
Expand Down

0 comments on commit e27e887

Please sign in to comment.