mirror of
https://github.com/nextcloud/server.git
synced 2026-03-04 18:28:08 +01:00
11 lines
167 B
PHP
11 lines
167 B
PHP
<?php
|
|
|
|
/**
|
|
* Class BadClass - accessing consts on blacklisted classes is not allowed
|
|
*/
|
|
class BadClass {
|
|
public function foo() {
|
|
$bar = \OC_API::ADMIN_AUTH;
|
|
}
|
|
}
|