1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
<?xml version="1.0" encoding="utf-8"?>
<chapter xml:id="property_linking" xmlns="http://docbook.org/ns/docbook">
<section>
<para>1. Existing property</para>
<para>
<property>Vendor\Namespace::$definitely_exists</property>
</para>
<para>
<property>Vendor\Namespace::$definitelyExists2</property>
</para>
</section>
<section>
<para>2. Nonexistent properties</para>
<para>
<property>Vendor\Namespace::$this_does_not_exist</property>
</para>
<para>
<property>Vendor\Namespace::$thisDoesNotExist2</property>
</para>
</section>
<section>
<para>3. Properties with leading and trailing underscores in ID</para>
<para>
<property>Extension\Class::$__leading_and_trailing_undescores__</property>
</para>
<para>
<property>Extension\Class::$__leadingAndTrailingUndescores2__</property>
</para>
</section>
<section>
<para>4. Properties (FQN)</para>
<para>
<property>\Vendor\Namespace::$definitely_exists</property>
</para>
<para>
<property>\Vendor\Namespace::$definitelyExists2</property>
</para>
</section>
</chapter>
|