We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee3db8d commit 265fdf3Copy full SHA for 265fdf3
src/Caching/Cache.php
@@ -66,9 +66,7 @@ class Cache
66
public const ALL = self::All;
67
68
/** @internal */
69
- public const
70
- NamespaceSeparator = "\x00",
71
- NAMESPACE_SEPARATOR = self::NamespaceSeparator;
+ public const NamespaceSeparator = "\x00";
72
73
private Storage $storage;
74
private string $namespace;
@@ -348,6 +346,7 @@ public function capture(mixed $key): ?OutputHelper
348
346
*/
349
347
public function start($key): ?OutputHelper
350
{
+ trigger_error(__METHOD__ . '() was renamed to capture()', E_USER_DEPRECATED);
351
return $this->capture($key);
352
}
353
0 commit comments