mirror of
https://github.com/nextcloud/server.git
synced 2026-02-03 20:41:22 -05:00
13 lines
199 B
PHP
13 lines
199 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
use OC_AppConfig as UseConfig;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Class BadClass - creating an instance of a blacklisted class is not allowed
|
||
|
|
*/
|
||
|
|
class BadClass {
|
||
|
|
public function foo() {
|
||
|
|
$bar = new UseConfig();
|
||
|
|
}
|
||
|
|
}
|