10 lines
125 B
Plaintext
10 lines
125 B
Plaintext
![]() |
[source,php]
|
||
|
----
|
||
|
$s = "";
|
||
|
try {
|
||
|
$s = readMyFile($fileName);
|
||
|
} catch (Exception $e) {
|
||
|
throw $e; // Noncompliant
|
||
|
}
|
||
|
----
|