2023-05-03 11:06:20 +02:00
|
|
|
== Why is this an issue?
|
|
|
|
|
2022-03-29 09:52:29 +02:00
|
|
|
include::../description.adoc[]
|
2022-02-01 11:58:45 +01:00
|
|
|
|
2023-05-03 11:06:20 +02:00
|
|
|
=== Noncompliant code example
|
2022-02-01 11:58:45 +01:00
|
|
|
|
2022-02-04 17:28:24 +01:00
|
|
|
[source,php]
|
2022-02-01 11:58:45 +01:00
|
|
|
----
|
|
|
|
/a[b]c/
|
|
|
|
----
|
|
|
|
|
2023-05-03 11:06:20 +02:00
|
|
|
=== Compliant solution
|
2022-02-01 11:58:45 +01:00
|
|
|
|
2022-02-04 17:28:24 +01:00
|
|
|
[source,php]
|
2022-02-01 11:58:45 +01:00
|
|
|
----
|
|
|
|
/abc/
|
|
|
|
----
|
|
|
|
|
2022-03-29 09:52:29 +02:00
|
|
|
include::../exceptions.adoc[]
|
2022-02-01 11:58:45 +01:00
|
|
|
|
2022-03-29 09:52:29 +02:00
|
|
|
include::../implementation.adoc[]
|