mirror of
https://github.com/nextcloud/server.git
synced 2025-10-26 19:21:34 +00:00
10 lines
165 B
PHP
10 lines
165 B
PHP
<?php
|
|
|
|
use OCP\AppFramework;
|
|
|
|
/**
|
|
* Class BadClass - creating an instance of a blacklisted class is not allowed
|
|
*/
|
|
class BadClass implements AppFramework\IApi {
|
|
}
|