BladeMapper
class BladeMapper
Methods
Map cached view paths to their original paths.
Find the compiled view file for the given compiled path.
Get the list of known paths from the compiler engine.
Filter out the view data that should not be shown in the exception report.
Detect the line number in the original blade file.
Compile the source map for the given blade file.
Add line numbers to echo statements.
Add line numbers to blade statements.
Add line numbers to blade components.
Insert a line number at the given position.
Trim empty lines from the given value.
Find the closest line number mapping in the given source map.
Details
at line 52
__construct(BladeCompiler $bladeCompiler)
Create a new Blade mapper instance.
at line 60
FlattenException
map(FlattenException $exception)
Map cached view paths to their original paths.
at line 86
protected string|null
findCompiledView(string $compiledPath)
Find the compiled view file for the given compiled path.
at line 99
protected array
getKnownPaths()
Get the list of known paths from the compiler engine.
In Hypervel, compiled paths are stored in coroutine Context (not an instance property) because the CompilerEngine is a process-global singleton in Swoole.
at line 123
protected array
filterViewData(array $data)
Filter out the view data that should not be shown in the exception report.
at line 137
protected int
detectLineNumber(string $filename, int $compiledLineNumber)
Detect the line number in the original blade file.
at line 153
protected string
compileSourcemap(string $value)
Compile the source map for the given blade file.
at line 173
protected string
addEchoLineNumbers(string $value)
Add line numbers to echo statements.
at line 196
protected string
addStatementLineNumbers(string $value)
Add line numbers to blade statements.
at line 219
protected string
addBladeComponentLineNumbers(string $value)
Add line numbers to blade components.
at line 242
protected string
insertLineNumberAtPosition(int $position, string $value)
Insert a line number at the given position.
at line 254
protected string
trimEmptyLines(string $value)
Trim empty lines from the given value.
at line 264
protected int
findClosestLineNumberMapping(string $map, int $compiledLineNumber)
Find the closest line number mapping in the given source map.