Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Releasing 2.0.2 into master #150

Merged
merged 38 commits into from
Apr 8, 2020
Merged
Changes from 1 commit
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
6d814b9
Clean up badges in README file (#116)
romaninsh Dec 1, 2019
fb62b28
Configuration Elements cannot be replaced (#117)
bepixeld Jan 20, 2020
2872fdb
Apply fixes from StyleCI
DarkSide666 Jan 20, 2020
7b08c27
Update composer.json
DarkSide666 Feb 11, 2020
6b01645
Update release-drafter.yml
DarkSide666 Feb 11, 2020
410e491
Update release-drafter.yml
DarkSide666 Feb 11, 2020
d3612e5
Create bundler.yml
DarkSide666 Feb 11, 2020
777cab2
Add POC for "CRUD::addTo($app)" syntax (#123)
romaninsh Feb 24, 2020
cdb8e0b
[REFACTOR] rename addHook to onHook with argument naming consistency …
georgehristov Feb 24, 2020
3e956a3
hook $this by default (#126)
georgehristov Feb 25, 2020
2ee83a5
Move doc builder instructions into Docker (#125)
romaninsh Feb 25, 2020
6a3a0d2
Rename hook spot argument (#127)
georgehristov Feb 25, 2020
d8faf82
Update unit-tests.yml
DarkSide666 Feb 25, 2020
dc4e7ea
Update unit-tests.yml
DarkSide666 Feb 25, 2020
dcfd2d5
Update unit-tests.yml
DarkSide666 Feb 25, 2020
2d72fed
avoid code duplication (#128)
georgehristov Feb 25, 2020
a2afb9e
setLayout -> initLayout (#130)
DarkSide666 Mar 9, 2020
026603f
Rename HEAD to develop for Composer in unit tests (#135)
mvorisek Mar 14, 2020
61ec8ba
Fix EOL to NL (#132)
mvorisek Mar 14, 2020
42bdb7a
Do not fail-fast PHP test matrix (#136)
mvorisek Mar 14, 2020
65a83e6
Improve StaticAddToTrait trait (#139)
mvorisek Mar 14, 2020
bed4b23
Fix typo
mvorisek Mar 14, 2020
7aa0260
Improve StaticAddTo tests and add unsafe method for BC UI impl. (#140)
mvorisek Mar 14, 2020
b89f97e
Do not wrap exception message in array (#141)
mvorisek Mar 15, 2020
5f01a1b
Add skip_add param to StaticAddToTrait trait methods (#143)
mvorisek Mar 16, 2020
483766a
Require class name in seed for addToWithClassName methods (#144)
mvorisek Mar 16, 2020
0b4a3d5
Update release-drafter.yml
DarkSide666 Mar 18, 2020
c40a81a
Update release-drafter.yml
DarkSide666 Mar 18, 2020
8707241
Update StaticAddToTrait.php
DarkSide666 Mar 20, 2020
3615739
Improve hooks and allow to delete/check specific priority (#133)
mvorisek Mar 21, 2020
9cc818e
Fix hook doc
mvorisek Mar 21, 2020
188895e
fix compatibility
DarkSide666 Mar 23, 2020
0157d7d
Fix bad phpdoc
mvorisek Apr 1, 2020
882cf1c
Add injection of solutions in Exception constructor (#119)
abbadon1334 Apr 2, 2020
7999f76
Fix CS - do not import classes without namespace (#147)
mvorisek Apr 7, 2020
8d908fd
Align exception header properly (#148)
mvorisek Apr 8, 2020
64d692f
Setting release dependencies
web-flow Apr 8, 2020
a8835f7
Merge branch 'master' into release/2.0.2
DarkSide666 Apr 8, 2020
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
Prev Previous commit
Next Next commit
Align exception header properly (#148)
mvorisek authored Apr 8, 2020

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit 8d908fdb39b117ecf4152556bdbf5c1b9c7c632f
4 changes: 2 additions & 2 deletions src/ExceptionRenderer/HTML.php
Original file line number Diff line number Diff line change
@@ -109,7 +109,7 @@ protected function processStackTrace(): void
$this->output .= '
<table class="ui very compact small selectable table">
<thead><tr><th colspan="3">Stack Trace</th></tr></thead>
<thead><tr><th>#</th><th>File</th><th>Object</th><th>Method</th></tr></thead>
<thead><tr><th style="text-align:right">#</th><th>File</th><th>Object</th><th>Method</th></tr></thead>
<tbody>
';

@@ -123,7 +123,7 @@ protected function processStackTrace(): void

protected function processStackTraceInternal(): void
{
$text = '
$text = '
<tr class="{CSS_CLASS}">
<td style="text-align:right">{INDEX}</td>
<td>{FILE_LINE}</td>