Skip to content

Commit a06a045

Browse files
Tofandelifox
authored andcommitted
Remove outdated doc
1 parent cd63d69 commit a06a045

File tree

3 files changed

+6
-31
lines changed

3 files changed

+6
-31
lines changed

docs/content/1_docs/2_getting-started/3_configuration.md

-25
Original file line numberDiff line numberDiff line change
@@ -79,31 +79,6 @@ return [
7979
];
8080
```
8181

82-
Twill registers its own exception handler in all controllers. If you need to customize it (to report errors on a 3rd party service like Sentry or Rollbar for example), you can opt-out from it in your `config/twill.php` file:
83-
84-
```php
85-
<?php
86-
87-
return [
88-
'bind_exception_handler' => false,
89-
];
90-
```
91-
92-
And then extend it from your own `app/Exceptions/Handler.php` class:
93-
94-
```php
95-
<?php
96-
97-
namespace App\Exceptions;
98-
99-
use A17\Twill\Exceptions\Handler as ExceptionHandler;
100-
use Exception;
101-
use Illuminate\Auth\AuthenticationException;
102-
103-
class Handler extends ExceptionHandler
104-
...
105-
```
106-
10782
If you would like to provide custom tables names, use the following configuration options:
10883

10984
```php

phpunit-legacy.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@
1717
</report>
1818
</coverage>
1919
<testsuites>
20+
<testsuite name="Browser">
21+
<directory>tests/Browser</directory>
22+
</testsuite>
2023
<testsuite name="Unit">
2124
<directory>tests/unit</directory>
2225
<directory>tests/integration</directory>
2326
</testsuite>
24-
<testsuite name="Browser">
25-
<directory>tests/Browser</directory>
26-
</testsuite>
2727
</testsuites>
2828
<logging/>
2929
<php>

phpunit.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@
77
</report>
88
</coverage>
99
<testsuites>
10+
<testsuite name="Browser">
11+
<directory>tests/Browser</directory>
12+
</testsuite>
1013
<testsuite name="Unit">
1114
<directory>tests/unit</directory>
1215
<directory>tests/integration</directory>
1316
</testsuite>
14-
<testsuite name="Browser">
15-
<directory>tests/Browser</directory>
16-
</testsuite>
1717
</testsuites>
1818
<logging/>
1919
<php>

0 commit comments

Comments
 (0)