Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 3 |
CRAP | |
0.00% |
0 / 3 |
OutputFilePlaceholder | |
0.00% |
0 / 1 |
|
0.00% |
0 / 3 |
12 | |
0.00% |
0 / 3 |
copyFromFile | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 1 |
|||
getContents | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 1 |
|||
readFromMultipart | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 1 |
<?php | |
namespace Shellbox\Command; | |
use Shellbox\Multipart\MultipartReader; | |
use Shellbox\ShellboxError; | |
class OutputFilePlaceholder extends OutputFile { | |
public function copyFromFile( $sourcePath ) { | |
// @phan-suppress-previous-line PhanPluginNeverReturnMethod | |
throw new ShellboxError( __METHOD__ . ': not implemented' ); | |
} | |
public function getContents() { | |
// @phan-suppress-previous-line PhanPluginNeverReturnMethod | |
throw new ShellboxError( __METHOD__ . ': not implemented' ); | |
} | |
public function readFromMultipart( MultipartReader $multipartReader ) { | |
// @phan-suppress-previous-line PhanPluginNeverReturnMethod | |
throw new ShellboxError( __METHOD__ . ': not implemented' ); | |
} | |
} |