for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
use dokuwiki\Extension\RemotePlugin;
/**
* For testing automatically extracted method descriptions
*
* @author Andreas Gohr <[email protected]>
*/
class remote_plugin_testing_auto extends RemotePlugin
{
* This is a dummy method
* @param string $str some more parameter description
* @param int $int
* @param bool $bool
* @param Object $unknown
* @return array
public function commented($str, $int, $bool, $unknown)
$unknown
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.
return array($str, $int, $bool);
}
* This should not be accessible via API
* @return bool
private function privateMethod()
return true;
protected function protectedMethod()
public function _underscore()
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.