mirror of
https://github.com/nextcloud/server.git
synced 2026-02-27 18:37:17 +01:00
11 lines
170 B
PHP
11 lines
170 B
PHP
<?php
|
|
|
|
/**
|
|
* Class BadClass - creating an instance of a blacklisted class is not allowed
|
|
*/
|
|
class BadClass {
|
|
public function foo() {
|
|
$bar = new OC_AppConfig();
|
|
}
|
|
}
|