BossBey File Manager
PHP:
7.4.33
OS:
Linux
User:
root
Root
/
.
/
vendor
/
phpunit
/
phpunit
/
tests
/
_files
📤 Upload
📝 New File
📁 New Folder
Close
Editing: MyCommand.php
<?php class MyCommand extends PHPUnit_TextUI_Command { public function __construct() { $this->longOptions['my-option='] = 'myHandler'; $this->longOptions['my-other-option'] = null; } public function myHandler($value) { echo __METHOD__ . " $value\n"; } }
Save
Cancel