diff options
author | Joas Schilling <nickvergessen@owncloud.com> | 2015-10-14 15:15:42 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@owncloud.com> | 2015-10-14 15:29:38 +0200 |
commit | d904a09a049f64ad3b55eb2b5184b4c5554b4710 (patch) | |
tree | 0d2e6261517fab6f8846204682b948bb5350dd0f /tests/data | |
parent | aa10825026edc391ac4280ec24077abff6452906 (diff) | |
download | nextcloud-server-d904a09a049f64ad3b55eb2b5184b4c5554b4710.tar.gz nextcloud-server-d904a09a049f64ad3b55eb2b5184b4c5554b4710.zip |
The constant is now deprecated
Diffstat (limited to 'tests/data')
-rw-r--r-- | tests/data/app/code-checker/test-const.php | 2 |
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; } } |