We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 55c4484 commit 0ffdb23Copy full SHA for 0ffdb23
README.md
@@ -63,6 +63,7 @@ composer require okapi/code-transformer
63
- [Create a transformer](#create-a-transformer)
64
- [Initialize the kernel](#initialize-the-kernel)
65
- [Result](#result)
66
+- [Limitations](#limitations)
67
68
69
@@ -251,6 +252,15 @@ $iAmAppended = true;
251
252
```
253
254
255
+# Limitations
256
+
257
+- Normally xdebug will point to the original source code, not the transformed
258
+ one. The problem with this is if you add or remove a line of code, xdebug
259
+ will point to the wrong line, so try to keep the number of lines the same
260
+ as the original source code.
261
262
263
264
# How it works
265
266
- The `Kernel` registers multiple services
0 commit comments