Sid Gifari File Manager
🏠 Root
/
home
/
genremedia08
/
musicjukebox.overlookedtracks.com
/
vendor
/
pda
/
pheanstalk
/
src
/
Command
/
Editing: TubeCommand.php
<?php namespace Pheanstalk\Command; /** * A command that is executed against a tube */ abstract class TubeCommand extends AbstractCommand { protected $tube; public function __construct(string $tube) { $this->tube = $tube; } }
Save
Cancel