15 lines
198 B
PHP
15 lines
198 B
PHP
<?php
|
|
|
|
namespace Codeception;
|
|
|
|
interface CustomCommandInterface
|
|
{
|
|
|
|
/**
|
|
* returns the name of the command
|
|
*
|
|
* @return string
|
|
*/
|
|
public static function getCommandName();
|
|
}
|