Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@owncloud.com>2015-10-14 16:15:42 +0300
committerJoas Schilling <nickvergessen@owncloud.com>2015-10-14 16:29:38 +0300
commitd904a09a049f64ad3b55eb2b5184b4c5554b4710 (patch)
tree0d2e6261517fab6f8846204682b948bb5350dd0f /tests/data
parentaa10825026edc391ac4280ec24077abff6452906 (diff)
The constant is now deprecated
Diffstat (limited to 'tests/data')
-rw-r--r--tests/data/app/code-checker/test-const.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/data/app/code-checker/test-const.php b/tests/data/app/code-checker/test-const.php
index 2af6baf2f3d..7ea3bd6c870 100644
--- a/tests/data/app/code-checker/test-const.php
+++ b/tests/data/app/code-checker/test-const.php
@@ -5,6 +5,6 @@
*/
class BadClass {
public function foo() {
- $bar = OC_API::ADMIN_AUTH;
+ $bar = \OC_API::ADMIN_AUTH;
}
}