Skip to content

Commit 8629985

Browse files
committed
Mark private static deprecation notice for 3.2
Its too intrusive for 3.1 at the moment
1 parent b416e50 commit 8629985

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/manifest/ConfigStaticManifest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ public function get($class, $name, $default) {
7878
$static = $this->statics[$class][$name];
7979

8080
if ($static['access'] != T_PRIVATE) {
81-
Deprecation::notice('3.1.0', "Config static $class::\$$name must be marked as private", Deprecation::SCOPE_GLOBAL);
81+
Deprecation::notice('3.2.0', "Config static $class::\$$name must be marked as private", Deprecation::SCOPE_GLOBAL);
8282
// Don't warn more than once per static
8383
$static['access'] = T_PRIVATE;
8484
}

0 commit comments

Comments
 (0)