Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 2 |
CRAP | |
0.00% |
0 / 2 |
InputFilePlaceholder | |
0.00% |
0 / 1 |
|
0.00% |
0 / 2 |
6 | |
0.00% |
0 / 2 |
copyTo | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 1 |
|||
getStreamOrString | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 1 |
<?php | |
namespace Shellbox\Command; | |
use Shellbox\ShellboxError; | |
/** | |
* An input file placeholder to represent a temporary file in the server | |
*/ | |
class InputFilePlaceholder extends InputFile { | |
public function copyTo( $destPath ) { | |
// @phan-suppress-previous-line PhanPluginNeverReturnMethod | |
throw new ShellboxError( __METHOD__ . ': not implemented' ); | |
} | |
public function getStreamOrString() { | |
// @phan-suppress-previous-line PhanPluginNeverReturnMethod | |
throw new ShellboxError( __METHOD__ . ': not implemented' ); | |
} | |
} |