Skip to content

Commit 3d5efde

Browse files
Merge pull request #225 from creative-commoners/pulls/6.3/deprecation-futuremajor
ENH Make it clear deprecations are removed in future major
1 parent 5c00e28 commit 3d5efde

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Task/StaticCacheFullBuildTask.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,11 +105,11 @@ public function run($request)
105105
}
106106

107107
/**
108-
* @deprecated 6.3.0 Will be replaced with new $output parameter in the run() method
108+
* @deprecated 6.3.0 Will be replaced with new $output parameter in the run() method in a future major release
109109
*/
110110
protected function log($message)
111111
{
112-
Deprecation::notice('6.3.0', 'Will be replaced with new $output parameter in the run() method');
112+
Deprecation::notice('6.3.0', 'Will be replaced with new $output parameter in the run() method in a future major release');
113113
$newLine = Director::is_cli() ? PHP_EOL : '<br>';
114114
echo $message . $newLine;
115115
}

0 commit comments

Comments
 (0)