Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion framework/db/Migration.php
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@
/**
* @param \Throwable $e
*/
private function printException($e)
protected function printException($e)

Check warning on line 165 in framework/db/Migration.php

View check run for this annotation

Codecov / codecov/patch

framework/db/Migration.php#L165

Added line #L165 was not covered by tests
{
echo 'Exception: ' . $e->getMessage() . ' (' . $e->getFile() . ':' . $e->getLine() . ")\n";
echo $e->getTraceAsString() . "\n";
Expand Down