Sid Gifari File Manager
🏠 Root
/
home
/
genremedia08
/
musicjukebox.overlookedtracks.com
/
vendor
/
pda
/
pheanstalk
/
src
/
Command
/
Editing: ListTubesCommand.php
<?php namespace Pheanstalk\Command; use Pheanstalk\Contract\ResponseParserInterface; use Pheanstalk\YamlResponseParser; /** * The 'list-tubes' command. * * List all existing tubes. */ class ListTubesCommand extends AbstractCommand { public function getCommandLine(): string { return 'list-tubes'; } public function getResponseParser(): ResponseParserInterface { return new YamlResponseParser(YamlResponseParser::MODE_LIST); } }
Save
Cancel