Remove unused return values from MMLTestUtil

Just removing unused code that never did anything. Note this is only
in a test. As long as all tests still succeed this can't really cause
any problems, I believe.

Change-Id: I272803353eed9de0ecf98c55b75710df16da2c44
This commit is contained in:
thiemowmde 2024-08-12 08:50:22 +02:00
parent 20c618d695
commit 10e2e17bb1

View file

@ -16,40 +16,22 @@ class MMLTestUtil {
if ( !file_exists( $filePath ) ) {
throw new InvalidArgumentException( "No testfile found at specified path: " . $filePath );
}
$file = file_get_contents( $filePath );
return json_decode( $file );
return json_decode( file_get_contents( $filePath ) );
}
public static function createJSONstartEnd( $start, $file ) {
if ( $start ) {
$generated = "[\n";
} else {
$generated = "\n]";
}
if ( file_put_contents( $file, $generated, FILE_APPEND ) !== false ) {
return true;
}
return false;
file_put_contents( $file, $start ? "[\n" : "\n]", FILE_APPEND );
}
public static function appendToJSONFile( $dataArray, $file ) {
$jsonData = json_encode( $dataArray, JSON_PRETTY_PRINT ) . ",";
if ( file_put_contents( $file, $jsonData, FILE_APPEND ) !== false ) {
return true;
}
return false;
file_put_contents( $file, $jsonData, FILE_APPEND );
}
public static function deleteFile( $file ) {
public static function deleteFile( $file ): void {
if ( file_exists( $file ) ) {
if ( unlink( $file ) ) {
return true;
} else {
return false;
}
unlink( $file );
}
return null;
}
public static function prettifyXML( $xml, $replaceHeader = true ) {