Files
faveo/vendor/bugsnag/bugsnag/tests/fixtures/code/File.php
2015-05-01 13:13:01 +05:30

22 lines
217 B
PHP

<?
//
// Example PHP file
//
// Some variables
$a = 1;
$b = 2;
// Create an exception
$exception = new Exception("Exception!");
// Throw the exception
throw $exception;
// Some more variables
$c = 3;
$d = 4;
?>