Skip to content

Commit 35e4c35

Browse files
committed
Automated deployment: Thu Oct 30 12:02:36 UTC 2025 4.4.0
1 parent 8c9edef commit 35e4c35

File tree

8 files changed

+132
-44
lines changed

8 files changed

+132
-44
lines changed

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -532,5 +532,5 @@ <h5 class="modal-title">Search</h5>
532532

533533
<!--
534534
MkDocs version : 1.6.1
535-
Build Date UTC : 2025-10-14 07:55:29.507153+00:00
535+
Build Date UTC : 2025-10-30 12:02:36.356242+00:00
536536
-->

search/search_index.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

sitemap.xml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -2,62 +2,62 @@
22
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
33
<url>
44
<loc>https://docs.dotkernel.org/dot-errorhandler/</loc>
5-
<lastmod>2025-10-14</lastmod>
5+
<lastmod>2025-10-30</lastmod>
66
</url>
77
<url>
88
<loc>https://docs.dotkernel.org/dot-errorhandler/v3/configuration/</loc>
9-
<lastmod>2025-10-14</lastmod>
9+
<lastmod>2025-10-30</lastmod>
1010
</url>
1111
<url>
1212
<loc>https://docs.dotkernel.org/dot-errorhandler/v3/installation/</loc>
13-
<lastmod>2025-10-14</lastmod>
13+
<lastmod>2025-10-30</lastmod>
1414
</url>
1515
<url>
1616
<loc>https://docs.dotkernel.org/dot-errorhandler/v3/overview/</loc>
17-
<lastmod>2025-10-14</lastmod>
17+
<lastmod>2025-10-30</lastmod>
1818
</url>
1919
<url>
2020
<loc>https://docs.dotkernel.org/dot-errorhandler/v4/configuration/</loc>
21-
<lastmod>2025-10-14</lastmod>
21+
<lastmod>2025-10-30</lastmod>
2222
</url>
2323
<url>
2424
<loc>https://docs.dotkernel.org/dot-errorhandler/v4/installation/</loc>
25-
<lastmod>2025-10-14</lastmod>
25+
<lastmod>2025-10-30</lastmod>
2626
</url>
2727
<url>
2828
<loc>https://docs.dotkernel.org/dot-errorhandler/v4/log-files/</loc>
29-
<lastmod>2025-10-14</lastmod>
29+
<lastmod>2025-10-30</lastmod>
3030
</url>
3131
<url>
3232
<loc>https://docs.dotkernel.org/dot-errorhandler/v4/overview/</loc>
33-
<lastmod>2025-10-14</lastmod>
33+
<lastmod>2025-10-30</lastmod>
3434
</url>
3535
<url>
3636
<loc>https://docs.dotkernel.org/dot-errorhandler/v4/extra/cookie/</loc>
37-
<lastmod>2025-10-14</lastmod>
37+
<lastmod>2025-10-30</lastmod>
3838
</url>
3939
<url>
4040
<loc>https://docs.dotkernel.org/dot-errorhandler/v4/extra/header/</loc>
41-
<lastmod>2025-10-14</lastmod>
41+
<lastmod>2025-10-30</lastmod>
4242
</url>
4343
<url>
4444
<loc>https://docs.dotkernel.org/dot-errorhandler/v4/extra/introduction/</loc>
45-
<lastmod>2025-10-14</lastmod>
45+
<lastmod>2025-10-30</lastmod>
4646
</url>
4747
<url>
4848
<loc>https://docs.dotkernel.org/dot-errorhandler/v4/extra/request/</loc>
49-
<lastmod>2025-10-14</lastmod>
49+
<lastmod>2025-10-30</lastmod>
5050
</url>
5151
<url>
5252
<loc>https://docs.dotkernel.org/dot-errorhandler/v4/extra/server/</loc>
53-
<lastmod>2025-10-14</lastmod>
53+
<lastmod>2025-10-30</lastmod>
5454
</url>
5555
<url>
5656
<loc>https://docs.dotkernel.org/dot-errorhandler/v4/extra/session/</loc>
57-
<lastmod>2025-10-14</lastmod>
57+
<lastmod>2025-10-30</lastmod>
5858
</url>
5959
<url>
6060
<loc>https://docs.dotkernel.org/dot-errorhandler/v4/extra/trace/</loc>
61-
<lastmod>2025-10-14</lastmod>
61+
<lastmod>2025-10-30</lastmod>
6262
</url>
6363
</urlset>

sitemap.xml.gz

0 Bytes
Binary file not shown.

v3/configuration/index.html

Lines changed: 11 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -291,20 +291,20 @@ <h1 id="configuration">Configuration</h1>
291291
<p>In <strong>config/autoload/error-handling.global.php</strong>:</p>
292292
<pre class="highlight"><code class="language-php">&lt;?php
293293

294+
declare(strict_types=1);
295+
294296
use Dot\ErrorHandler\ErrorHandlerInterface;
295297
use Dot\ErrorHandler\LogErrorHandler;
296-
use Dot\ErrorHandler\ErrorHandler;
297298

298299
return [
299-
'dependencies' =&gt; [
300+
'dependencies' =&gt; [
300301
'aliases' =&gt; [
301302
ErrorHandlerInterface::class =&gt; LogErrorHandler::class,
302-
]
303-
303+
],
304304
],
305305
'dot-errorhandler' =&gt; [
306306
'loggerEnabled' =&gt; true,
307-
'logger' =&gt; 'dot-log.default_logger'
307+
'logger' =&gt; 'dot-log.default_logger',
308308
]
309309
];</code></pre>
310310
<p>A configuration example for the default logger can be found in <code>config/log.global.php.dist</code>.</p>
@@ -319,23 +319,21 @@ <h1 id="configuration">Configuration</h1>
319319
</blockquote>
320320
<pre class="highlight"><code class="language-php">&lt;?php
321321

322-
use Dot\ErrorHandler\ErrorHandlerInterface;
323-
use Custom\MyErrorHandler;
324-
use Custom\MyErrorHandlerFactory;
322+
declare(strict_types=1);
325323

326324
return [
327-
'dependencies' =&gt; [
325+
'dependencies' =&gt; [
328326
'factories' =&gt; [
329-
MyErrorHandler::class =&gt; MyCustomHandlerFactory::class,
327+
\App\CustomErrorHandler::class =&gt; \App\CustomHandlerFactory::class,
330328
],
331329
'aliases' =&gt; [
332-
ErrorHandlerInterface::class =&gt; MyErrorHandler::class,
330+
\Dot\ErrorHandler\ErrorHandlerInterface::class =&gt; \App\CustomErrorHandler::class,
333331
],
334332
],
335333
'dot-errorhandler' =&gt; [
336334
'loggerEnabled' =&gt; true,
337-
'logger' =&gt; 'dot-log.default_logger',
338-
]
335+
'logger' =&gt; 'dot-log.default_logger',
336+
],
339337
];</code></pre>
340338
<p>Config examples can be found in this project's <code>config</code> directory.</p>
341339

v3/overview/index.html

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -269,6 +269,14 @@ <h5 class="subnavigation__title">Table of Contents</h5>
269269
<h6 class="toc__headline">On this page</h6>
270270
<ul class="toc__list">
271271

272+
<li class="toc__entry">
273+
<a href="#version-history" class="toc__link nav-link">Version History</a>
274+
</li>
275+
276+
<li class="toc__entry">
277+
<a href="#badges" class="toc__link nav-link">Badges</a>
278+
</li>
279+
272280
<li class="toc__entry">
273281
<a href="#features" class="toc__link nav-link">Features</a>
274282
</li>
@@ -298,6 +306,44 @@ <h6 class="toc__headline">On this page</h6>
298306

299307
<h1 id="overview">Overview</h1>
300308
<p><code>dot-errorhandler</code> is Dotkernel's logging error handler, providing two options:</p>
309+
<h2 id="version-history">Version History</h2>
310+
<div class="table-responsive"><table>
311+
<thead>
312+
<tr>
313+
<th>Branch</th>
314+
<th>Release</th>
315+
<th>Service Manager</th>
316+
<th>Log style implementation</th>
317+
<th>PHP Version</th>
318+
</tr>
319+
</thead>
320+
<tbody>
321+
<tr>
322+
<td>4.0</td>
323+
<td>&lt; 4.1.0</td>
324+
<td>Service Manager 3</td>
325+
<td>Laminas Log style</td>
326+
<td><img alt="PHP from Packagist (specify version)" src="https://img.shields.io/packagist/php-v/dotkernel/dot-errorhandler/4.0.1" /></td>
327+
</tr>
328+
<tr>
329+
<td>3.0</td>
330+
<td>&lt; 4.0.0</td>
331+
<td>Service Manager 3</td>
332+
<td>Laminas Log</td>
333+
<td><img alt="PHP from Packagist (specify version)" src="https://img.shields.io/packagist/php-v/dotkernel/dot-errorhandler/3.4.1" /></td>
334+
</tr>
335+
</tbody>
336+
</table></div>
337+
<h2 id="badges">Badges</h2>
338+
<p><img alt="OSS Lifecycle" src="https://img.shields.io/osslifecycle/dotkernel/dot-errorhandler" />
339+
<img alt="PHP from Packagist (specify version)" src="https://img.shields.io/packagist/php-v/dotkernel/dot-errorhandler/4.0.1" /></p>
340+
<p><a href="https://github.com/dotkernel/dot-errorhandler/issues"><img alt="GitHub issues" src="https://img.shields.io/github/issues/dotkernel/dot-errorhandler" /></a>
341+
<a href="https://github.com/dotkernel/dot-errorhandler/network"><img alt="GitHub forks" src="https://img.shields.io/github/forks/dotkernel/dot-errorhandler" /></a>
342+
<a href="https://github.com/dotkernel/dot-errorhandler/stargazers"><img alt="GitHub stars" src="https://img.shields.io/github/stars/dotkernel/dot-errorhandler" /></a>
343+
<a href="https://github.com/dotkernel/dot-errorhandler/blob/4.0/LICENSE"><img alt="GitHub license" src="https://img.shields.io/github/license/dotkernel/dot-errorhandler" /></a></p>
344+
<p><a href="https://github.com/dotkernel/dot-errorhandler/actions/workflows/continuous-integration.yml"><img alt="Build Static" src="https://github.com/dotkernel/dot-errorhandler/actions/workflows/continuous-integration.yml/badge.svg?branch=4.0" /></a>
345+
<a href="https://codecov.io/gh/dotkernel/dot-errorhandler"><img alt="codecov" src="https://codecov.io/gh/dotkernel/dot-errorhandler/branch/4.0/graph/badge.svg?token=0KIJARS5RS" /></a>
346+
<a href="https://github.com/dotkernel/dot-errorhandler/actions/workflows/static-analysis.yml"><img alt="PHPStan" src="https://github.com/dotkernel/dot-errorhandler/actions/workflows/static-analysis.yml/badge.svg?branch=4.0" /></a></p>
301347
<h2 id="features">Features</h2>
302348
<p>This package provides two features:</p>
303349
<ul>

v4/configuration/index.html

Lines changed: 11 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -366,20 +366,20 @@ <h1 id="configuration">Configuration</h1>
366366
<p>In <strong>config/autoload/error-handling.global.php</strong>:</p>
367367
<pre class="highlight"><code class="language-php">&lt;?php
368368

369+
declare(strict_types=1);
370+
369371
use Dot\ErrorHandler\ErrorHandlerInterface;
370372
use Dot\ErrorHandler\LogErrorHandler;
371-
use Dot\ErrorHandler\ErrorHandler;
372373

373374
return [
374-
'dependencies' =&gt; [
375+
'dependencies' =&gt; [
375376
'aliases' =&gt; [
376377
ErrorHandlerInterface::class =&gt; LogErrorHandler::class,
377-
]
378-
378+
],
379379
],
380380
'dot-errorhandler' =&gt; [
381381
'loggerEnabled' =&gt; true,
382-
'logger' =&gt; 'dot-log.default_logger'
382+
'logger' =&gt; 'dot-log.default_logger',
383383
]
384384
];</code></pre>
385385
<p>A configuration example for the default logger can be found in <code>config/log.global.php.dist</code>.</p>
@@ -394,23 +394,21 @@ <h1 id="configuration">Configuration</h1>
394394
</blockquote>
395395
<pre class="highlight"><code class="language-php">&lt;?php
396396

397-
use Dot\ErrorHandler\ErrorHandlerInterface;
398-
use Custom\MyErrorHandler;
399-
use Custom\MyErrorHandlerFactory;
397+
declare(strict_types=1);
400398

401399
return [
402-
'dependencies' =&gt; [
400+
'dependencies' =&gt; [
403401
'factories' =&gt; [
404-
MyErrorHandler::class =&gt; MyCustomHandlerFactory::class,
402+
\App\CustomErrorHandler::class =&gt; \App\CustomHandlerFactory::class,
405403
],
406404
'aliases' =&gt; [
407-
ErrorHandlerInterface::class =&gt; MyErrorHandler::class,
405+
\Dot\ErrorHandler\ErrorHandlerInterface::class =&gt; \App\CustomErrorHandler::class,
408406
],
409407
],
410408
'dot-errorhandler' =&gt; [
411409
'loggerEnabled' =&gt; true,
412-
'logger' =&gt; 'dot-log.default_logger',
413-
]
410+
'logger' =&gt; 'dot-log.default_logger',
411+
],
414412
];</code></pre>
415413
<p>Config examples can be found in this project's <code>config</code> directory.</p>
416414

v4/overview/index.html

Lines changed: 47 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -351,6 +351,10 @@ <h5 class="subnavigation__title">Table of Contents</h5>
351351
<h6 class="toc__headline">On this page</h6>
352352
<ul class="toc__list">
353353

354+
<li class="toc__entry">
355+
<a href="#version-history" class="toc__link nav-link">Version History</a>
356+
</li>
357+
354358
<li class="toc__entry">
355359
<a href="#badges" class="toc__link nav-link">Badges</a>
356360
</li>
@@ -377,9 +381,51 @@ <h6 class="toc__headline">On this page</h6>
377381

378382
<h1 id="overview">Overview</h1>
379383
<p><code>dot-errorhandler</code> is Dotkernel's logging error handler, providing two options:</p>
384+
<h2 id="version-history">Version History</h2>
385+
<div class="table-responsive"><table>
386+
<thead>
387+
<tr>
388+
<th>Branch</th>
389+
<th>Release</th>
390+
<th>Service Manager</th>
391+
<th>Log style implementation</th>
392+
<th>PHP Version</th>
393+
</tr>
394+
</thead>
395+
<tbody>
396+
<tr>
397+
<td>4.1</td>
398+
<td>&gt;= 4.2.0</td>
399+
<td>Service Manager 4</td>
400+
<td>PSR-Log</td>
401+
<td><img alt="PHP from Packagist (specify version)" src="https://img.shields.io/packagist/php-v/dotkernel/dot-errorhandler/4.4.0" /></td>
402+
</tr>
403+
<tr>
404+
<td>4.1</td>
405+
<td>&lt; 4.2.0</td>
406+
<td>Service Manager 4</td>
407+
<td>Laminas Log style</td>
408+
<td><img alt="PHP from Packagist (specify version)" src="https://img.shields.io/packagist/php-v/dotkernel/dot-errorhandler/4.1.1" /></td>
409+
</tr>
410+
<tr>
411+
<td>4.0</td>
412+
<td>&lt; 4.1.0</td>
413+
<td>Service Manager 3</td>
414+
<td>Laminas Log style</td>
415+
<td><img alt="PHP from Packagist (specify version)" src="https://img.shields.io/packagist/php-v/dotkernel/dot-errorhandler/4.0.1" /></td>
416+
</tr>
417+
<tr>
418+
<td>3.0</td>
419+
<td>&lt; 4.0.0</td>
420+
<td>Service Manager 3</td>
421+
<td>Laminas Log</td>
422+
<td><img alt="PHP from Packagist (specify version)" src="https://img.shields.io/packagist/php-v/dotkernel/dot-errorhandler/3.4.1" /></td>
423+
</tr>
424+
</tbody>
425+
</table></div>
380426
<h2 id="badges">Badges</h2>
381427
<p><img alt="OSS Lifecycle" src="https://img.shields.io/osslifecycle/dotkernel/dot-errorhandler" />
382-
<img alt="PHP from Packagist (specify version)" src="https://img.shields.io/packagist/php-v/dotkernel/dot-errorhandler/4.3.0" /></p>
428+
<img alt="PHP from Packagist (specify version)" src="https://img.shields.io/packagist/php-v/dotkernel/dot-errorhandler/4.4.0" /></p>
383429
<p><a href="https://github.com/dotkernel/dot-errorhandler/issues"><img alt="GitHub issues" src="https://img.shields.io/github/issues/dotkernel/dot-errorhandler" /></a>
384430
<a href="https://github.com/dotkernel/dot-errorhandler/network"><img alt="GitHub forks" src="https://img.shields.io/github/forks/dotkernel/dot-errorhandler" /></a>
385431
<a href="https://github.com/dotkernel/dot-errorhandler/stargazers"><img alt="GitHub stars" src="https://img.shields.io/github/stars/dotkernel/dot-errorhandler" /></a>

0 commit comments

Comments
 (0)