8000 [PoC] [ValueExporter] extract HttpKernel/DataCollector util to its own component by HeahDude · Pull Request #18450 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

[PoC] [ValueExporter] extract HttpKernel/DataCollector util to its own component #18450

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

Closed
wants to merge 12 commits into from
Closed
Changes from 1 commit
Commits
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
[ValueExporter] fixed class name's late static bind in AbstractValueE…
…xporter
  • Loading branch information
HeahDude committed Apr 23, 2016
commit 677c3c267c6f73d23d7589dde221509d6afd1324
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ final public function addFormatters(array $formatters)
$formatterClass = get_class($formatter);

if (!$formatter instanceof $this->formatterInterface) {
throw new InvalidFormatterException($formatterClass, self::class, $this->formatterInterface);
throw new InvalidFormatterException($formatterClass, static::class, $this->formatterInterface);
}

if (in_array(ExpandedFormatterTrait::class, class_uses($formatterClass), true)) {
Expand Down
0