16 lines
221 B
PHP
16 lines
221 B
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* Class ExtendedCreateModulesStep
|
||
|
*/
|
||
|
class ExtendedCreateModulesStep extends CreateModulesStep
|
||
|
{
|
||
|
/**
|
||
|
* @param string $str
|
||
|
*/
|
||
|
public function SendResponse($str)
|
||
|
{
|
||
|
return;
|
||
|
}
|
||
|
}
|