2022-03-29 09:52:29 +02:00
|
|
|
include::../description.adoc[]
|
2022-02-01 11:58:45 +01:00
|
|
|
|
|
|
|
== Noncompliant Code Example
|
|
|
|
|
2022-02-04 17:28:24 +01:00
|
|
|
[source,php]
|
2022-02-01 11:58:45 +01:00
|
|
|
----
|
|
|
|
/a[b]c/
|
|
|
|
----
|
|
|
|
|
|
|
|
== Compliant Solution
|
|
|
|
|
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[]
|