mirror of
https://github.com/nextcloud/server.git
synced 2026-03-04 18:28:08 +01:00
10 lines
157 B
PHP
10 lines
157 B
PHP
<?php
|
|
|
|
use OCP\AppFramework\IApi;
|
|
|
|
/**
|
|
* Class BadClass - creating an instance of a blacklisted class is not allowed
|
|
*/
|
|
class BadClass implements IApi {
|
|
}
|