10 lines
167 B
PHP
10 lines
167 B
PHP
|
<?php
|
||
|
|
||
|
use OCP\AppFramework\IApi as OAFIA;
|
||
|
|
||
|
/**
|
||
|
* Class BadClass - creating an instance of a blacklisted class is not allowed
|
||
|
*/
|
||
|
class BadClass implements OAFIA {
|
||
|
}
|