mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 12:05:37 +00:00
15 lines
233 B
PHP
15 lines
233 B
PHP
<?php
|
|
|
|
namespace SilverStripe\Logging;
|
|
|
|
/**
|
|
* Core error handler for a SilverStripe application
|
|
*/
|
|
interface ErrorHandler
|
|
{
|
|
/**
|
|
* Register and begin handling errors with this handler
|
|
*/
|
|
public function start();
|
|
}
|