add quotes

This commit is contained in:
Chirag Aggarwal 2025-08-29 18:41:46 +05:30
parent 262be06b0d
commit 4ef6c23a67

View file

@ -1081,7 +1081,7 @@ App::init()
$replaceWith = preg_replace('/\./', '#', $replaceWith, 1);
}
$deprecatedReplaceWithLink = 'https://appwrite.io/docs/references/cloud/server-rest/' . $replaceWith;
$deprecationWarning = 'Route ' . $route->getPath() . ' is deprecated since ' . $deprecatedMethod->getSince() . '. Please use ' . $deprecatedMethod->getReplaceWith() . ' instead. See: ' . $deprecatedReplaceWithLink;
$deprecationWarning = 'Route ' . $route->getPath() . ' is deprecated since ' . $deprecatedMethod->getSince() . '. Please use `' . $deprecatedMethod->getReplaceWith() . '` instead. See: ' . $deprecatedReplaceWithLink;
$warnings[] = $deprecationWarning;
}
}