Remove deprecated constants from StoredObjectNormalizer

Deleted the deprecated constants `ADD_DAV_SEE_LINK_CONTEXT` and `ADD_DAV_EDIT_LINK_CONTEXT` from the `StoredObjectNormalizer` class. These constants are no longer in use and their removal cleans up the codebase.
This commit is contained in:
Julien Fastré 2024-09-04 14:34:49 +02:00
parent 615629d1b4
commit 063bc2857f
Signed by: julienfastre
GPG Key ID: BDE2190974723FCB

View File

@ -30,16 +30,6 @@ final class StoredObjectNormalizer implements NormalizerInterface, NormalizerAwa
{
use NormalizerAwareTrait;
/**
* @deprecated
*/
public const string ADD_DAV_SEE_LINK_CONTEXT = 'dav-see-link-context';
/**
* @deprecated
*/
public const string ADD_DAV_EDIT_LINK_CONTEXT = 'dav-edit-link-context';
public function __construct(
private readonly JWTDavTokenProviderInterface $JWTDavTokenProvider,
private readonly UrlGeneratorInterface $urlGenerator,