添加遗漏符号

三点 2017-03-20 18:02:34 +08:00
parent 08f26094f5
commit 67a579b58b

@ -4,7 +4,7 @@
```php
set_exception_handler(function($exception){
error_log("code:" . $exception->getCode . ' exception: ' . $exception->getMessage());
error_log("code:" . $exception->getCode() . ' exception: ' . $exception->getMessage());
});
```